Answers for "how to make array empty"

13

javascript empty array

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

//function
const empty = arr => arr.length = 0;
//example
var arr= [1,2,3,4,5];
empty(arr) // arr=[]
Posted by: Guest on July-02-2020
11

javascript empty array

var colors = ["red","blue","green"];
    colors = []; //empty the array
Posted by: Guest on October-22-2019
3

js delete all array items

A = [];
Posted by: Guest on May-30-2020
0

empty array js

let list = [1, 2, 3, 4];
function empty() {
    //empty your array
    list.length = 0;
}
empty();
Posted by: Guest on June-01-2020
0

how to make array empty

A.length = 0
Posted by: Guest on May-30-2020
0

javascript empty array

var arr1 = ['a','b','c','d','e','f'];
var arr2 = arr1;  // Reference arr1 by another variable 
arr1 = [];
console.log(arr2); // Output ['a','b','c','d','e','f']
Posted by: Guest on October-23-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language