JSFiddle - React, Tailwind, and code Playground

car22

by dougiei

JavaScript

const car = {
model: 'Fiesta',
manufacturer: 'Ford',
fullName: () => {

return `${this.manufacturer} ${this.model}`
}

var mycar =new car();