scrimba
Object Oriented Programming in JavaScript
Types of Properties
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

Types of Properties
AboutCommentsNotes
Types of Properties
Expand for more info
index.js
run
preview
console
// Questions? contact me on Twitter:
// @the_brianb

// freeCodeCamp challenge: N/A

let duck = {
name: 'Bob',
numLegs: 2
}

let dog = {
name: 'Piper',
numLegs: 4
}

console.log(dog.name)
console.log(dog.numLegs);
Console
"Piper"
,
4
,
index.html
-0:39