← the terminal · man pages

MAN PAGES // WEEK 22

OBJECTS AND NESTED DATA · Ch 9 Sec 5-8 · six terms · write your own usage line under each
$ man OBJECT
a collection of named properties in one variable

$ man PROPERTY
one name: value pair inside an object

$ man KEY
the name half of a property

$ man DOT_NOTATION
object.property access

$ man BRACKET_NOTATION
object['property'] access, for tricky keys

$ man NESTING
objects holding arrays holding objects, as deep as needed