12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
|
const niceObject = {
|
||
|
type: "the greatest",
|
||
|
knownFor: [
|
||
|
"indenting",
|
||
|
"everything",
|
||
|
{
|
||
|
and: "wanting",
|
||
|
to: "keep",
|
||
|
it: "so"
|
||
|
}
|
||
|
]
|
||
|
}
|