@Kinokio said in Определение устройства на странице:
@sergerdn said in Определение устройства на странице:
парсит
то есть без свитчей я не обойдусь...
Все программирование - это сплошные условия и проверка их.
Код НЕ полный:
function getPlatformType(platform) {
switch (platform) {
case 'Linux armv9':
case 'Linux armv81':
return 'Mobile';
case 'Win32':
return 'Desktop';
default:
throw new Error(`Sorry, we are out of ${platform}.`);
}
}
const navigatorPlatform = 'Linux armv81';
try {
const platformType = getPlatformType(navigatorPlatform);
console.log(`Platform type: ${platformType}`);
} catch (error) {
console.error(error.message);
}