JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

JavaScript

let a = 5;
let b = a;
b = 6;
console.log(a, b);