Disturbing #perf fun fact. Use `&&` if possible rather than `||`. It short circuits the condition early on true statement reducing the number of checks required.
Only do this for high-perf tasks; this is true cross browsers. https://t.co/LoEj4IYgXP
#typescript#webdev#benchmark