scrimba
Learn JavaScript
Build a Mobile App
Aside: Turning an Object into an Array
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

Aside: Turning an Object into an Array
AboutCommentsNotes
Aside: Turning an Object into an Array
Expand for more info
index.js
run
preview
console
let scrimbaUsers = {
"00": "sindre@scrimba.com",
"01": "per@scrimba.com",
"02": "frode@scrimba.com"
}
Console
[
"sindre@scrimba.com"
,
"per@scrimba.com"
,
"frode@scrimba.com"
]
,
[
"00"
,
"01"
,
"02"
]
,
[
[
"00"
,
"sindre@scrimba.com"
]
,
[
"01"
,
"per@scrimba.com"
]
,
[
"02"
,
"frode@scrimba.com"
]
]
,
/index.html
-4:11