“ES6 Parámetros Destructurar Objeto anidado” Código de respuesta

Destructación de matriz y objeto de un objeto anidado

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)

ES6 Parámetros Destructurar Objeto anidado

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

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

Respuestas similares a “ES6 Parámetros Destructurar Objeto anidado”

Preguntas similares a “ES6 Parámetros Destructurar Objeto anidado”

Más respuestas relacionadas con “ES6 Parámetros Destructurar Objeto anidado” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código