/wiki/TagConstant.wiki

http://jsdoc-toolkit.googlecode.com/ · Unknown · 20 lines · 14 code · 6 blank · 0 comment · 0 complexity · a9c0876996638701e2f10b1bcfa60198 MD5 · raw file

  1. #summary @constant
  2. == The @constant Tag ==
  3. The `@constant` tag allows you to mark a variable as being constant.
  4. === Syntax ===
  5. {{{
  6. @constant
  7. }}}
  8. === Example ===
  9. {{{
  10. /**
  11. * @constant
  12. */
  13. const acceleration = 9.80665;
  14. }}}