概述
记录一个项目的版本。@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;
}
记录一个项目的版本。@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;
}