JSFiddle - React, Tailwind, and code Playground
by jsoverson
JavaScript
var foo = 0;
if (foo++ < 1) {document.write('after comparison')}
if (++foo > 1) {document.write('before comparison')}
by jsoverson
var foo = 0;
if (foo++ < 1) {document.write('after comparison')}
if (++foo > 1) {document.write('before comparison')}