Create Empty Array Js Code Example


Example 1: javascript empty array


var colors = ["red","blue","green"];
colors = []; //empty the array

Example 2: javascript empty array


arr = [];   // set array=[]

//function
const empty = arr => arr.length = 0;
//example
var arr= [1,2,3,4,5];
empty(arr) // arr=[]

Example 3: create empty array javascript


const myArray1 = []
// or...
const myArray2 = new Array()

Example 4: create an empty array js


let arrayName = [];

Example 5: javascript declare empty array


// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];

Example 6: empty array js


// define Array
let list = [1, 2, 3, 4];
function empty() {
//empty your array
list = [];
}
empty();

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable