JS tidbit: Never be confused about integer Array access with increments again.
I'll keep this short. Ever seen a code snippet where an integer variable was initialized and used to access an array like this:
const funArray = ['This', 'should', 'be', 'fun']
let i = 0;
let j = 0;
console.log({a:funArray[i++]}) //what would this b...
giddydev.hashnode.dev1 min read