加载中...

@todo


描述: 记录一个将要完成的任务。

语法

@todo text describing thing to do.

概述

@todo标签可以让你记录要完成的任务。在一个JSDoc注释块中您可以包含多个@todo标签。

Examples

例如,使用@todo标签:

  1. /**
  2. * @todo Write the documentation.
  3. * @todo Implement this function.
  4. */
  5. function foo() {
  6. // write me
  7. }

还没有评论.