Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Node JS 中有一个 __dirname 常量。
我可以用相同的形式定义自己的常量吗?
例如:
__根
或者
__myCrazyConstant
谢谢!
无论它包含多少个下划线,您都可以使用您想要的任何名称创建一个变量。
const您可以使用关键字创建一个常量:
const
const myContsant = 42; myConstant = 0; console.log(myConstant); // 42