Advertisement
saasbook

obj1.js

Mar 13th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. toucan = {
  2. lifespan: 20, // property values can be any type...
  3. classification: { // ...including another object
  4. family: 'ramphastidae',
  5. genus: 'ramphastos',
  6. species: 'sulfuratus'
  7. },
  8. 'call': 'croak' // quotes usually optional on property name
  9. };
  10. toucan['lifespan'] // => 20
  11. toucan.lifespan // shortcut when no syntactic ambiguity
  12. toucan.classification.genus // => 'ramphastos'
  13. toucan.classification['species'] // => 'sulfuratus'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement