scrimba
Objects & Object Constructors
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Objects & Object Constructors
AboutCommentsNotes
Objects & Object Constructors
Expand for more info
index.js
run
preview
console
const myObject = {
property: 'Value!',
otherProperty: 77,
"obnoxious property": function() {
// do stuff!
}
}

// const variable = 'property'
// console.log(myObject.variable);
// console.log(myObject[variable]);
Console
/index.html
-10:23