JSFiddle - React, Tailwind, and code Playground

by Narayan Prusty

JavaScript

var x = 12;
var y = x;
y = 14;
console.log(x);
console.log(y);