“Pusta tablica JS” Kod odpowiedzi

JavaScript pusta tablica

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

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

Utwórz pustą tablicę JavaScript

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

JavaScript to tablica pusta

var colors=[];
if(!colors.length){
	// I am empty
}else{
	// I am not empty
}
Grepper

Wygeneruj pustą tablicę JS

Array.from({length: 500})

// change the length to whatever value you want
Exuberant Eland

Pusta tablica JS

let list = [1, 2, 3, 4];
function empty() {
    //empty your array
    list.length = 0;
}
empty();
Philan ISithembiso

Pusta tablica JS

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

Odpowiedzi podobne do “Pusta tablica JS”

Pytania podobne do “Pusta tablica JS”

Więcej pokrewnych odpowiedzi na “Pusta tablica JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu