Answers for "how to clear array javascript"

1

javascript clear an array

let arr = [3.14, 7];

arr = [];//make sure there is no other reference
Posted by: Guest on February-08-2021
0

js delete all from array

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

Code answers related to "how to clear array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language