“Beristirahatlah di objek yang merusak” Kode Jawaban

Contoh Destrukturisasi Objek

const hero = {
  name: 'Batman',
  realName: 'Bruce Wayne',
  address: {
    city: 'Gotham'
  }
};

// Object destructuring:
const { realName, address: { city } } = hero;
city; // => 'Gotham'
Nutty Narwhal

Beristirahatlah di objek yang merusak

let { a, b, ...rest } = { a: 10, b: 20, c: 30, d: 40 };
console.log(rest); // { c: 30, d: 40 }
Ashamed Albatross

Jawaban yang mirip dengan “Beristirahatlah di objek yang merusak”

Pertanyaan yang mirip dengan “Beristirahatlah di objek yang merusak”

Lebih banyak jawaban terkait untuk “Beristirahatlah di objek yang merusak” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya