JSFiddle - React, Tailwind, and code Playground
JavaScript
var text1 = 'outside';
function logIt(){
console.log(text1);
text1 = 'inside';
};
logIt();
var text1 = 'outside';
function logIt(){
console.log(text1);
text1 = 'inside';
};
logIt();