avatar
check current device is mobile or Desktop Javascript
const detectDeviceType = () => 
	/Android/webOS/iPhone/iPad/iPod/BlackBerry/IEMobile/Opera Mini/i.test(
	navigator.userAgent
	) ? "Mobile" : "Desktop";
You need to login to do this manipulation!