“Como fazer a matriz vazia” Respostas de código

JavaScript Matriz vazia

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

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

JS exclua todos os itens de matriz

A = [];
Modern Mouse

Matriz vazia JS

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

Como fazer a matriz vazia

A.length = 0
Modern Mouse

Respostas semelhantes a “Como fazer a matriz vazia”

Perguntas semelhantes a “Como fazer a matriz vazia”

Mais respostas relacionadas para “Como fazer a matriz vazia” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código