“Paramètre ES6 Destructuration Nested Object” Réponses codées

Array et objet destructeur d'un objet imbriqué

const person = {
    name: 'labib',
    age: 22,
    job: 'web-developer',
    frieds: ['ahsik', 'abir', 'alvi', 'hanafi'],
    childList: {
        firstChild: 'Salman',
        secondChild: 'Rafi',
        thirdChild: 'Anfi'
    }
}
const { frieds: [a, b, c] } = person; //array destructuring from a nested object 
console.log(a, b, c);
//expected output: ahsik abir alvi;
const { childList: { firstChild, secondChild } } = person; //object destructuring from a nested object
console.log(firstChild, secondChild)
//expected output:Salman Rafi
Ariful Islam Adil(Code Lover)

Paramètre ES6 Destructuration Nested Object

const myFunc = ({event: {target: {name,secondName}}}) => {
  console.log(name);
  console.log(secondName);
}

myFunc({event: {target: {name: 'fred'}}})
Poised Petrel

Réponses similaires à “Paramètre ES6 Destructuration Nested Object”

Questions similaires à “Paramètre ES6 Destructuration Nested Object”

Plus de réponses similaires à “Paramètre ES6 Destructuration Nested Object” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code