We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不具合の説明 constキーワードを使って定義した定数がスコープ外からアクセスできてしまう。
const
再現手順 不具合を再現するための手順
if(true) { const ABC = "ABC"; } print(ABC); //出力 : ABC
期待する動作
if(true) { const ABC = "ABC"; } print(ABC); // エラーになるべき
補足 そろそろ定数と読み取り専用の変数を一本化してもいいかも
The text was updated successfully, but these errors were encountered:
constとreadonlyの意味を同じにした
readonly
Sorry, something went wrong.
修正 #112
e15e021
const => var readonlyに修正
var readonly
6be1362
No branches or pull requests
不具合の説明
const
キーワードを使って定義した定数がスコープ外からアクセスできてしまう。再現手順
不具合を再現するための手順
期待する動作
補足
そろそろ定数と読み取り専用の変数を一本化してもいいかも
The text was updated successfully, but these errors were encountered: