JSFiddle - React, Tailwind, and code Playground

by Antocha Parabellum

JavaScript

function square ( x ) {
  return x * x;
}

var f = square( 5 );
console.log( f );