JSFiddle - React, Tailwind, and code Playground
JavaScript
var truck = new Vehicle({type: 'truck', color: 'red'});
function Vehicle(config) {
this.type = config.type;
this.color = config.color
}
console.log(truck.type);
var truck = new Vehicle({type: 'truck', color: 'red'});
function Vehicle(config) {
this.type = config.type;
this.color = config.color
}
console.log(truck.type);