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