Destructuring object

Run Settings
LanguageJavaScript
Language Version
Run Command
const profile = { firstName: "John", lastName: "Doe", age: 18 }; profile.firstName = "Dimas"; profile.age = 30; profile.isMale = false; ({firstName, age, isMale} = profile); console.log(`my name is ${firstName}, I'am ${age} olds, Male: ${isMale}`); console.log(profile);
Editor Settings
Theme
Key bindings
Full width
Lines