contoh destructuring
const mobil = {
brand: 'Honda',
model: 'City',
tahun: 2021,
color: 'red'
};
console.log(myCar(mobil));
function myCar({tahun, color, brand,model}) {
const message = 'My Car is a ' + tahun + ' ' + color + ' ' + brand + ' ' + model + '.';
return message; // Tambahkan return untuk mengembalikan pesan
}
INFO