JSFiddle - React, Tailwind, and code Playground

by Alex Fogarty

JavaScript

function addOne(){
    var x=5;
    x++;
    alert(x);
}
addOne();