JSFiddle - React, Tailwind, and code Playground
JavaScript
function Vehicle(topSpeed){
this.topSpeed = topSpeed;
this.printTopSpeed = function(){
console.log('Top speed:'+this.topSpeed+' km/h');
}
}
var myVehicle = new Vehicle(50);
myVehicle.printTopSpeed();