JSFiddle - React, Tailwind, and code Playground
by inadcod
JavaScript
var a = 8;
//var b = 5;
b = a;
a++;
alert(b);
alert(a);
function theyAreTheSame(){
a = b;
alert(b);
}
//theyAreTheSame();
by inadcod
var a = 8;
//var b = 5;
b = a;
a++;
alert(b);
alert(a);
function theyAreTheSame(){
a = b;
alert(b);
}
//theyAreTheSame();