Answers for "how to check test datatype in javascript"

2

is string javascript

function isString(value) {
	return typeof value === 'string' || value instanceof String;
}

isString(''); // true
isString(1); // false
isString({}); // false
isString([]); // false
isString(new String('teste')) // true
Posted by: Guest on June-07-2020
4

type javascirpt

console.log(typeof 42);
Posted by: Guest on February-07-2020

Code answers related to "how to check test datatype in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language