JSFiddle - React, Tailwind, and code Playground
by swaff
HTML
<button id="btn">Whats the largest number value?</button>
JavaScript
$(document).ready(function(){
$("#btn").click(function(){
alert(Number.MAX_VALUE);
});
});