JSFiddle - React, Tailwind, and code Playground

by bilbobaggins

JavaScript

var person = "Kobe";
var anotherPerson = person; 
// anotherPerson = the value of person
person = "Bryant"; 
// value of person changed
console.log(anotherPerson); // Kobe
console.log(person); // Bryant