Answers for "how to empty an array javascript"

6

Javascript remove empty elements from array

var colors=["red","blue",,null,undefined,,"green"];

//remove null and undefined elements from colors
var realColors = colors.filter(function (e) {return e != null;});
console.log(realColors);
Posted by: Guest on July-25-2019
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
0

javascript empty array

if (array === undefined || array.length == 0) {
    // array empty or does not exist
}
Posted by: Guest on September-05-2020
1

javascript declare empty array

// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];
Posted by: Guest on June-10-2020
2

empty array js

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

empty array javascript

// set array
arr = [1,2,4];

// empty array
arr = [];
Posted by: Guest on September-15-2020

Code answers related to "how to empty an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language