“Проверка типа JavaScript” Ответ

Тип JavaScript

//typeof() will return the type of value in its parameters.
//some examples of types: undefined, NaN, number, string, object, array

//example of a practical usage
if (typeof(value) !== "undefined") {//also, make sure that the type name is a string
  	//execute code
}
The Amateur

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

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

Проверка типа JavaScript

var trueTypeOf = function (obj) {
	return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
};

// Returns "array"
trueTypeOf([]);

// Returns "date"
trueTypeOf(new Date());
Funny Name

Ответы похожие на “Проверка типа JavaScript”

Вопросы похожие на “Проверка типа JavaScript”

Больше похожих ответов на “Проверка типа JavaScript” по JavaScript

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

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