JSFiddle - React, Tailwind, and code Playground

JavaScript

a = 1;
alert(a);
five();
function five() {
  this.a = 5;
}

alert(a);