Answers for "how to check variable type number in javascript"

0

js is variable int

// The === operator is used for checking
// the value and the type of a variable

var data = 1;

if (data === parseInt(data, 10))
    alert("data is integer")
else
    alert("data is not an integer")
Posted by: Guest on October-09-2020

Code answers related to "how to check variable type number in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language