scrimba
Introduction to ES6+
Object Literal (Challenge)
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

Object Literal (Challenge)
AboutCommentsNotes
Object Literal (Challenge)
Expand for more info
index.js
run
preview
console
function addressMaker(address) {
const newAddress = {
city: address.city,
state: address.state,
country: 'United States'
};

}

addressMaker({city: 'Austin', state: 'Texas'});
Console
index.html
-1:52