gpt4 book ai didi

javascript - 局部变量的正确 JSDoc 语法是什么?

转载 作者:可可西里 更新时间:2023-11-01 02:16:44 26 4
gpt4 key购买 nike

对于这样的函数...

function example() {
var X = 100;

...

var Y = 'abc';

...

return Z;
}

我需要解释一些局部变量的用途。添加这样的描述...

function example() {
/**
* @description - Need to explain the purpose of X here.
*/
var X = 100;

...

/**
* @description - Need to explain the purpose of Y here.
*/
var Y = 'abc';

...

return Z;
}

...似乎没有被 JS Doc v3.4.0 接受。

正确的语法是什么?

附言我的一些用例需要多行注释。

最佳答案

我通常在我的项目中使用类似下面的代码。

function example() {
/**
* Need to explain the purpose of X here.
* @type {number}
*/
var X = 100;

...

/**
* Need to explain the purpose of Y here.
* @type {string}
*/
var Y = 'abc';

...

return Z;
}

关于javascript - 局部变量的正确 JSDoc 语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38708777/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com