JSFiddle - React, Tailwind, and code Playground

by watsuyo_2

HTML

<script src="https://rawgit.com/tweeeety/logFiddle/master/execLogFiddle.js"></script>

JavaScript

function Fruit(name) {
	this.name = name;
  this.getName = function() {
  	return this.name;
  };
}

let fruit = new Fruit('banana');
console.log(fruit.getName());