genertate Array empty nodejs code example
Example 1: empty array js
// define Array
let list = [1, 2, 3, 4];
function empty() {
//empty your array
list = [];
}
empty();
Example 2: empty array javascript
let myArray = [12 , 222 , 1000 ];
myArray.length = 0; // myArray will be equal to [].