当前位置:网站首页>3、 JS notes

3、 JS notes

2022-06-13 08:33:00 001128XY

JS notes

1、 Single-line comments ://

vscode Shortcut key :Ctrl + /

2、 Multiline comment :/* The comment */

vscode Shortcut key :alt + Shift +a

3、 Documentation Comments

1、 Function description
/**
* Calculate the sum of two values
* @param a {number} Parameters 1
* @param b {number} Parameters 2
* @returns {number} Sum of two values
* @author Sz 2022/05/20
* @example
* 6, 10 => 16
*/

2、 A document description
/**
* file name :util.js
* author :sz
* describe : Toolset Encapsulates a large number of tool functions
* Modifier : cf
* Modification time :2022-11-22
* Modify the content : A little
*/

原网站

版权声明
本文为[001128XY]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202270540386066.html