Created
January 26, 2021 23:04
-
-
Save kamilklkn/89b1ff1fda1dbc6c416edc52a2300b5a to your computer and use it in GitHub Desktop.
Sayfanın mobil cihazda mı yoksa masaüstünde mi görüntülendiğini algılar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const detectDeviceType = () => | |
/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test( | |
navigator.userAgent | |
) | |
? 'Mobile' | |
: 'Desktop'; | |
//ÖRNEKLER | |
detectDeviceType(); // 'Mobile' or 'Desktop' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment