JSFiddle - React, Tailwind, and code Playground

by Emily Humphrey

JavaScript

var c = 0;
function hello(){
	c++
  console.log(c)
	hello()
}

hello()