Created
November 30, 2022 13:43
-
-
Save triacontane/cd431c5beeee38d5d2ac17cb5fabaffb to your computer and use it in GitHub Desktop.
関数内で定義した識別子をグローバルで参照させる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
'use strict'; | |
class Game_Aaa { | |
} | |
window.Game_Aaa = Game_Aaa; | |
})(); | |
console.log(Game_Aaa); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment