“Cómo borrar la matriz en JavaScript” Código de respuesta

Cómo borrar la matriz en JavaScript

A.length = 0
Ugly Unicorn

matriz vacía js

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

matriz vacía js

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

JS Eliminar todo de la matriz

var list = [1, 2, 3, 4];
function empty() {
    //empty your array
    list.length = 0;
}
empty();
Xanthous Xenomorph

Respuestas similares a “Cómo borrar la matriz en JavaScript”

Preguntas similares a “Cómo borrar la matriz en JavaScript”

Más respuestas relacionadas con “Cómo borrar la matriz en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código