JSFiddle - React, Tailwind, and code Playground
JavaScript
var foo = {
a: 10,
b: null
}
foo.b = foo.a
foo.a ++
// will this be 10 or 11?
alert(foo.b)
var foo = {
a: 10,
b: null
}
foo.b = foo.a
foo.a ++
// will this be 10 or 11?
alert(foo.b)