글
Enums in Javascript
J/Javascript
2014. 3. 19. 15:51
function Suit(name){
this._name = name;
}
Suit.prototype.toString = function(){
return this._name;
}
Suit.CLUBS = new Suit('clubs');
Suit.DIAMONDS = new Suit('diamonds');
Suit.HEARTS = new Suit('hearts');
Suit.SPADES = new Suit('spades');
'J > Javascript' 카테고리의 다른 글
자바스크립트에서 delete 연산자 (0) | 2014.03.19 |
---|---|
자바스크립트에서 이벤트 취소와 전달 취소 (0) | 2014.03.19 |
Javascript에서 String 여러 줄 (MultiLine)에 쓰기 (0) | 2014.03.19 |
Script async와 defer (0) | 2014.03.19 |
ShowModal, ShowModaless Dialog (0) | 2014.03.18 |