JSFiddle - React, Tailwind, and code Playground

by Yuriy Petrichenko

JavaScript

function Car(name, color, model) {
	this.name = name;
  this.color = "red";
  this.model = model;
}