ecar
0
Q:

check type javascript

typeof("string"); //string
typeof(123); //number
10
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"

if(typeof bar === 'number') {
   //whatever
}
3
if (typeof i != "number") {
    console.log('This is not number');
}
1
//typeof() will return the type of value in it's parameters.
//some examples of types: undefined, NaN, number, string, object, array

//example of a practical usage
if (typeof(value) !== "undefined") {//asuming value is already set
  	//execute code
}
8
typeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keyword
4
console.log(typeof "how are you?")
"string"
console.log(typeof false) / console.log(typeof true)
"boolean"
console.log(typeof 100)
"number"
1
console.log(typeof 93);
// Output = "number"

console.log(typeof 'Maximum');
// Output = 'string'

console.log(typeof false);
// Output = "boolean"

console.log(typeof anUndeclaredVariable);
// Output = "undefined"
3
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
1
var x = "Hello World";
typeof x; // "string"
1

New to Communities?

Join the community