The three points in Javascript style guide

155 阅读1分钟

if you don't need to change the variable anymore, use the const replace the var and let.


use the comma to declare the variable in one line.


 use the noun to declare the variable and the class ,use the verb to declare the function.