var o = { key: 'value' }
o.key
"value"
o['key']
"value"
var propName = 'key'
o[propName]
"value"
o.text = 1
1
o.doesNotExist
undefined
delete o.text
true
The console allows you to interact with the course material and examples. Use the following keys:
A special logging function is also available: