JSFiddle - React, Tailwind, and code Playground
HTML
<HTML>
<body>
<script>
add7 = num => num + 7;
console.log(add7(7));
multiply = (a, b) => a * b;
console.log(multiply(1, 2));
capitalize = str => str.charAt(0).toUpperCase() + str.slice(1, str.length).toLowerCase();
console.log(capitalize('hElLo'));
</script>
</body>
</HTML>