JSFiddle - React, Tailwind, and code Playground
by godgav
HTML
<div id="result"></div>
JavaScript
var vehicle = function(){
this.speed = 0;
this.setSpeed = funciton(val){
this.speed = val;
}
}
var car = function(engineType){
var engine = engineType;
this.getEngine = function(){
return engine;
}
}
car.prototype = new vehicle();
var ford = new car('v12');
alert(ford.speed);