Nikita Malyschkin
@nmalyschkin
Nikita Malyschkin
web developer by day
philosopher when drunk
Javascript / Python / C++ / more
Twitter / GitHub / Telegram
@nmalyschkin
function Car (color) {
this.color = color;
this.speed = 10;
}
Car.prototype.drive = function(){...}