@todo
描述: 记录一个将要完成的任务。
语法
@todo text describing thing to do.
概述
@todo标签可以让你记录要完成的任务。在一个JSDoc注释块中您可以包含多个@todo标签。
Examples
例如,使用@todo标签:
/** * @todo Write the documentation. * @todo Implement this function. */ function foo() { // write me }