how to make an array empty in javascript code example

Example 1: 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 2: create empty array javascript

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

Example 3: generate empty array js

Array.from({length: 500})

// change the length to whatever value you want

Example 4: empty array js

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