JSFiddle - React, Tailwind, and code Playground

by bittersweetryan

JavaScript

var Car = function(){

};

Car.prototype = {
    wheels : 4, doors : 4,  manufacturer : ""
};

var R8 = function(){
   
}; 

R8.prototype = new Car();

R8.prototype.constructor = R8;
    
var r8 = new R8();