JavaScript

상속과 다형성을 이용한 복잡한 객체 생성 function Car(){ var self = this; self.type = “Car” self.go = function(){ console.log(“Going…”); }; }; Toyota = function(){}; Toyota.prototype = new Car(); Toyota.prototype.constructor =...