propertytag.js 371 B

12345678910111213141516
  1. /**
  2. * @namespace
  3. * @property {String} id=abc123 The identifier.
  4. * @property {Object} defaults The default values.
  5. * @property {Number} defaults.a=1 The a property of the defaults.
  6. * @property {String} defaults.b The b property of the defaults.
  7. */
  8. var myobject = {
  9. id: "abc123",
  10. defaults: {
  11. a: 1,
  12. b: "Hit the light",
  13. c: true
  14. }
  15. };