@use JSDoc

概述

記錄項目的版本。@version 標籤後的文字將用於表示項目的版本。

範例

使用 @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;
}