Answers for "find the datatype of a variable in javascript"

14

javascript how to know type of variable

var foo = "Hello";
console.log(typeof foo); // string
Posted by: Guest on February-20-2020
12

check data type in js

typeof("string"); //string
typeof(123); //number
Posted by: Guest on July-25-2020
5

check data type in js

typeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keyword
Posted by: Guest on March-21-2020
0

javascript all type of data

let a = ["A", 1, true, [], [2, 'x'],{},{a:'B'}, NaN, undefined, null];
let s = a.toString();
console.log(s);//"A,1,true,,2,x,[object Object],[object Object],NaN,, "
Posted by: Guest on April-03-2020

Code answers related to "find the datatype of a variable in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language