Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created November 30, 2022 13:43
Show Gist options
  • Save triacontane/cd431c5beeee38d5d2ac17cb5fabaffb to your computer and use it in GitHub Desktop.
Save triacontane/cd431c5beeee38d5d2ac17cb5fabaffb to your computer and use it in GitHub Desktop.
関数内で定義した識別子をグローバルで参照させる
(() => {
'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