클래스
다른언어 처럼 클래스 기반으로 동작하는것이 아니라 여전히 프로토타입 기반으로 동작한다. 프로토타입 기반 문법을 보기좋게 클래스로 바꾼것으로 생각하면 된다. 다음은 프로토타입 상속 예제 코드이다. var Human = function(type) { this.type = type || 'human'; }; Human.isHuman = function(human) { return human instanceof Human; } Human.prototype.breathe = function() { alert('h-a-a-a-m'); }; var Zero = function(type, firstName, lastName) { Human.apply(this, arguments); this.firstName = fir..