JavaScript

icon picker
objectName.propertyName

Like all JS variables, both the object name and property name are case sensitive. You can define a property by assigning it a value.
var myCar = new Object();
myCar.make = 'Ford';
myCar.model = 'Mustang';
myCar.year = 1969;
Written using an
var myCar = {
make: 'Ford',
model: 'Mustang',
year: 1969
};

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.