DEV Community

Discussion on: 20 JavaScript One-Liners That Will Help You Code Like a Pro

Collapse
 
djkim profile image
DJ Kim

Awesome article!
A couple suggestions though:

const isTabInView = () => !document.hidden; // Not hidden

and

const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform); // to be a function like other examples

Collapse
 
ovi profile image
Muhammad Ovi • Edited

Missed it there, thanks for the suggestions!
Made changes accordingly.