Answers for "how to check data tytpe in js"

12

check data type in js

typeof("string"); //string
typeof(123); //number
Posted by: Guest on July-25-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 check data tytpe in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language