JSFiddle - React, Tailwind, and code Playground

by Rich Costello

HTML

<div onclick="showTheSquareOf(6)"> show this bitch</div>

JavaScript

function showTheSquareOf (number)
{
    var square = number * number;
    alert('The square of ' + number + ' is ' + square);
}