“Destructura de matrices en JS” Código de respuesta

JS destruyendo matrices y objetos

// 1) Destructure array items
const [first, second,, fourth] = [10, 20, 30, 40];

// 2) Destructure object properties
const { PI, E, SQRT2 } = Math;
Puzzled Puffin

Destructación en ES6

let {a, b, c} = obj
Outrageous Ostrich

Destructura de matrices en JS

const arr = [1, 2, 3, 4];
const [first, second] = arr; // first = 1, second = 2
Easy Earthworm

JS-Destructuración

const getTemperature = (atticData) => atticData?.celsius ?? 15;
// insted do
const getTemperature = ({ celsius = 15 } = {}) => celsius;

// https://realworldjs.medium.com/never-use-the-dot-operator-in-javascript-ee0339d85fb
Xenophobic Xenomorph

Asignación de destrucción js

const [firstElement, secondElement] = list;
// is equivalent to:
// const firstElement = list[0];
// const secondElement = list[1];

// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
Ill Iguana

Respuestas similares a “Destructura de matrices en JS”

Preguntas similares a “Destructura de matrices en JS”

Más respuestas relacionadas con “Destructura de matrices en JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código