JSDoc 中文网

概述

¥Overview

记录项目的版本。@version 标签后面的文本将用于表示项目的版本。

¥Documents the version of an item. The text following the @version tag will be used to denote the version of the item.

示例

¥Examples

使用@version 标签
/**

 * Solves equations of the form a * x = b. Returns the value

 * of x.

 * @version 1.2.3

 * @tutorial solver
 */
function solver(a, b) {
    return b / a;
}