how blank array code example
Example 1: how to make array empty
A.length = 0
Example 2: javascript declare empty array
// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];
A.length = 0
// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];