JSFiddle - React, Tailwind, and code Playground

by padma rubhan

JavaScript

var car={

stop: function(){
alert(run);
},
run: function(){
alert("run");
}
}


car.stop();
car.run("rubhan stop");