Today I Learned
Javascript
<TIL
Console log tips
console.log({myVariable})
will result in {mayVariable: “foo”} on DevTools
src
console.dir(obj)
list the properties of the specified JS object
src
console.trace()
and
console.time()
<->
console.timeEnd()
src