JSFiddle - React, Tailwind, and code Playground
by Alex Fogarty
JavaScript
var myAge; // creates the vaiable called myAge
myAge = 44; // initalizes the variable with the value 44
myAge = myAge + 4; // adds 4 to the current value of the variable
alert(myAge); // alerts the current value to a popup