“Проверьте тип данных в JS” Ответ

Как проверить тип данных с переменной JavaScript

let counter = 120; // counter is a number
console.log(typeof(counter)); // "number"

counter = false;   // counter is now a boolean
console.log(typeof(counter)); // "boolean"

counter = "Hi";   // counter is now a string
console.log(typeof(counter)); // "string"Code language: JavaScript (javascript)
Zany Zebra

Проверьте тип данных в JS

typeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keyword
gritter97

Проверьте тип данных в JS

var x = "Hello World";
typeof x; // "string"
TC5550

Ответы похожие на “Проверьте тип данных в JS”

Вопросы похожие на “Проверьте тип данных в JS”

Смотреть популярные ответы по языку

Смотреть другие языки программирования