Tim*_*ara 7 javascript documentation documentation-generation
我正在为JavaScript项目生成API文档.JavaScript有什么类似Python的文档字符串吗?
function add(a, b) {
/**
Returns the sum of `a` and `b`.
*/
return (a - 0) + (b - 0);
}
Run Code Online (Sandbox Code Playgroud)