Answers for "how to get the data type of a variable in js"

11

data type in javascript

var age = 18;                           // number 
var name = "Jane";                      // string
var name = {first:"Jane", last:"Doe"};  // object
var truth = false;                      // boolean
var sheets = ["HTML","CSS","JS"];       // array
var a; typeof a;                        // undefined
var a = null;                           // value null
Posted by: Guest on August-05-2021
6

javascript find type of variable

> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"

if(typeof bar === 'number') {
   //whatever
}
Posted by: Guest on May-16-2020
1

check data type in js

var x = "Hello World";
typeof x; // "string"
Posted by: Guest on May-23-2020

Code answers related to "how to get the data type of a variable in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language