“Array Destructurant dans JS” Réponses codées

JS des tableaux et des objets destructeurs

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

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

Destructeur dans ES6

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

Array Destructurant dans JS

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

js-destructuration

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

Affectation destructure 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

Réponses similaires à “Array Destructurant dans JS”

Questions similaires à “Array Destructurant dans JS”

Plus de réponses similaires à “Array Destructurant dans JS” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code