JSFiddle - React, Tailwind, and code Playground
HTML
<div onclick="showTheSquareOf(6)"> show this bitch</div>
JavaScript
function showTheSquareOf (number)
{
var square = number * number;
alert('The square of ' + number + ' is ' + square);
}