概要
このアイテムのバージョンを記述します。@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;
}