detectDeviceType() this function will return you a string value either "Mobile" or "Desktop".
See Demo on Codepen :-
At CXDIIN, we are passionate about technology, programming, and exploring the vast world of JavaScript libraries. Our mission is to provide valuable resources, tips, and tricks to empower individuals and help them navigate the ever-evolving landscape of technology.
const detectDeviceType = () =>
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)
? 'Mobile'
: 'Desktop';
// Example
detectDeviceType(); // "Mobile" or "Desktop"
Comments