JSFiddle - React, Tailwind, and code Playground
by praveenti
JavaScript
var apple = {
type:"mac",
color:"red",
getInfo: function (){
return this.color;
}
};
alert(apple.getInfo());
by praveenti
var apple = {
type:"mac",
color:"red",
getInfo: function (){
return this.color;
}
};
alert(apple.getInfo());