Skip to content

Instantly share code, notes, and snippets.

@furaji
Created September 4, 2014 08:18
Show Gist options
  • Save furaji/91bc3787ef6d9ab029e2 to your computer and use it in GitHub Desktop.
Save furaji/91bc3787ef6d9ab029e2 to your computer and use it in GitHub Desktop.
jsでシングルトンのクラス
var Hoge;
(function() {
var instance;
Hoge = function Hoge(argument1, argument2) {
if (instance) {
return instance;
}
instance = this;
// メソッド
this.set = function() {
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment