JSFiddle - React, Tailwind, and code Playground

by Anthony Pipkin

JavaScript

var truck = new Vehicle({type: 'truck', color: 'red'});
 

function Vehicle(config) { 
   this.type = config.type; 
   this.color = config.color
}
console.log(truck.type);