ES6类属性文档

时间:2018-10-19 08:09:32

标签: javascript node.js

在javascript函数中,我们可以进行记录,

/**
 * @param {number} x the first number to add 
 * @param {number} y the second number to add
 * @returns total of given 2 numbers
 */
let f = (x, y) => {
    return x + y;
}

是否有任何标准的方法或建议来记录ES6类属性(例如this.namethis.title),因为任何类属性都可以用不同的方法定义,并且可能很难跟踪。

1 个答案:

答案 0 :(得分:3)

每条评论:

@property用于静态道具,@member用于实例道具。