JSFiddle - React, Tailwind, and code Playground

by gianlucaguarini

JavaScript

var foo = {
  a: 10,
  b: null
}

foo.b = foo.a
foo.a ++

// will this be 10 or 11?
alert(foo.b)