Objects
Object JavaScript adalah wadah untuk nilai yang diberi nama atau biasa disebut properti atau method.
const person = {
name: "Rajif",
walk() {},
talk() {}
}
person.talk();
person.name = '';
const targetMember = 'name';
person[targetMember.value] = 'Mahendra';
Last updated
Was this helpful?