Quick actions

cmd+k|ctrl+k

Navigation

Languages

contoh destructuring

Snippet info

Language

JavaScript

Visibility

public

Author

asepkhabril20

Created

2024-11-07T01:22:52.558751Z

Updated

2024-11-07T01:22:52.558751Z

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