Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how can I check whether a variable is a number or a string in javascript?

share|improve this question

15 Answers

up vote 110 down vote accepted

If you're dealing with literal notation, and not constructors, you can use typeof:.

typeof "Hello World"; // string
typeof 123;           // number

If you're creating numbers and strings via a constructor, such as var foo = new String("foo"), you should keep in mind that typeof may return object for foo.

Perhaps a more foolproof method of checking the type would be to utilize the method found in underscore.js (annotated source can be found here),

var toString = Object.prototype.toString;

_.isString = function (obj) {
  return toString.call(obj) == '[object String]';
}

This returns a boolean true for the following:

_.isString("Jonathan"); // true
_.isString(new String("Jonathan")); // true
share|improve this answer
54  
which says "string" and "number" respectively – Thilo Sep 29 '10 at 2:47
16  
This is not correct! There are two possible representations of a string. alert(typeof new String()) will output "Object". Worse, javascript will occasionally convert back and forth between the two representations behind the scenes for optimization purposes – George Mauer May 16 '11 at 20:33
2  
@George According to the OP, only existing variables will be tested. – Jonathan Sampson May 17 '11 at 20:27
3  
Sure, but say I have function isString(str) { return typeof str === 'string' } some Java-convert can be using my method like so var myString = new String("stuff I like"); isString(myString) this returns false. Also, I'm not exactly sure how long the backgroiund conversion lasts, I know when I call "hi".length, "hi" gets converted into an object, not sure how soon it gets converted back again or if that is ever bound to the variable. – George Mauer May 18 '11 at 20:04
4  
True, but wth would you want to use the String object anyway? – Félix Saparelli Jul 9 '11 at 0:57
show 12 more comments

Best way to do that is using isNaN + type casting:

Updated all-in method:

function isNumber (o) {
  return ! isNaN (o-0) && o !== null && o.replace(/^\s\s*/, '') !== "" && o !== false;
}

------------------------

function isNumber (o) {
  return ! isNaN (o-0);
}

isNumber ('123'); // true  
isNumber (5); // true  
isNumber ('q345'); // false

EDIT:

In case you need to handle null values:

function isNumber (o) {
  return ! isNaN (o-0) && o != null;
}

EDIT2 (updated) : In case you need to handle null and the empty string:

function isNumber (o) {
  return ! isNaN (o-0) && o !== null && o !== "" && o !== false;
}

isNumber (''); // false
share|improve this answer
12  
This looks like a good solution if you want to count strings that parse as valid numbers. – Trevor Burnham Jul 16 '10 at 11:42
2  
FYI: null is coerced into 0 and returns true for isNumber(null); – Edward Apr 4 '12 at 22:42
1  
this breaks for [] – event_jr Jul 4 '12 at 13:50
This made me happy already twice! – Marcel Jan 21 at 19:56
this is great for dealing with data when you don't have direct control of how it's sent. I'm using a feed that sends me numbers as strings so this is exactly what I need to detect numeric values. Thanks! – ShadeTreeDeveloper Jan 31 at 0:55
show 4 more comments

The best way I have found is to either check for a method on the string, i.e.:

if (x.substring) {
// do string thing
} else{
// do other thing
}

or if you want to do something with the number check for a number property,

if (x.toFixed) {
// do number thing
} else {
// do other thing
}

This is sort of like "duck typing", it's up to you which way makes the most sense. I don't have enough karma to comment, but typeof fails for boxed strings and numbers, i.e.:

alert(typeof new String('Hello World'));
alert(typeof new Number(5));

will alert "object".

share|improve this answer
1  
I find this to be better than typeof as it can always test for a string, whether primitive or String object. You just have to test for a method that's unique for the type you want. – ADTC Apr 7 '12 at 7:25

Check if the value is a string literal or String object:

function isString(o) {
    return typeof o == "string" || (typeof o == "object" && o.constructor === String);
}

Unit test:

function assertTrue(value, message) {
    if (!value) {
        alert("Assertion error: " + message);
    }
}

function assertFalse(value, message)
{
    assertTrue(!value, message);
}

assertTrue(isString("string literal"), "number literal");
assertTrue(isString(new String("String object")), "String object");
assertFalse(isString(1), "number literal");
assertFalse(isString(true), "boolean literal");
assertFalse(isString({}), "object");

Checking for a number is similar:

function isNumber(o) {
    return typeof o == "number" || (typeof o == "object" && o.constructor === Number);
}
share|improve this answer
(o.constructor === String) by itself seems to be sufficient, even for string literals. – Chris Noe Aug 21 '12 at 19:04
This will cause an exception if o === null – TJ. May 10 at 11:09

Try this,

<script type="text/javascript">
var reInteger = /^\d+$/;

function isInteger (s)
{    
    return reInteger.test(s)
}

if(isInteger("1a11"))
   document.write("Int");
else
  document.write("Not an integer");

</script>
share|improve this answer
//testing data types accurately in JavaScript (opposed to "typeof")
//from http://bonsaiden.github.com/JavaScript-Garden/
function is(type, obj) {
    var clas = Object.prototype.toString.call(obj).slice(8, -1);
    return obj !== undefined && obj !== null && clas === type;
}

//basic usage
is('String', 'test'); // true
is('Array', true); // false

Or adapt it to return an unknown type:

function realTypeOf(obj) {
    return Object.prototype.toString.call(obj).slice(8, -1);
}

//usage
realTypeOf(999); // 'Number'

May 12, 2012 Update: Full example at Javascript: A Better typeof.

share|improve this answer
Still room for improvement regarding realTypeOf: realTypeOf(NaN) -> "Number" which is same behaviour as typeof agreed but still far from ideal. – user359650 Aug 24 '12 at 8:09

You're looking for isNaN():

<script type="text/javascript">
  alert(isNaN(123));
  alert(isNaN(-1.23));
  alert(isNaN(5-2));
  alert(isNaN(0));
  alert(isNaN("Hello"));
  alert(isNaN("2005/12/12"));
</script>

See JavaScript isNaN() Function at W3schools.com.

share|improve this answer
1  
I find it strange that they would choose the inverse operation for the method name. Seems more intuitive to call isNumber(). – Nathan Taylor Aug 20 '09 at 2:54
Totally agreed. :) JavaScript works in mysterious ways... – Jakob Gade Aug 20 '09 at 2:58
5  
It isn't actually an inverse operation of 'isNumber'. NaN is a special value of number in javascript. isNaN converts everything supplied to it to number and checks if the result is NaN or not. For strings like "25", you get incorrect result. – Chetan Sastry Aug 20 '09 at 3:14
1  
I just tested with "25" and it returned false - like I would expect. – Jakob Gade Aug 20 '09 at 5:01
2  
NaN is a special value in the IEEE 754 Standard for Binary Floating-Point Arithmetic, not just a JavaScript thing. (Well, to be precise: "the 9007199254740990 (that is, (2^53)-2) distinct “Not-a-Number” values of the IEEE Standard are represented in ECMAScript as a single special NaN value.") – NickFitz Aug 20 '09 at 9:42
show 3 more comments

Best way to do this:

function isNumber(num) {
  return (typeof num == 'string' || typeof num == 'number') && !isNaN(num - 0) && num !== '';
};

This satisfies the following test cases:

assertEquals("ISNUMBER-True: 0", true, isNumber(0));
assertEquals("ISNUMBER-True: 1", true, isNumber(-1));
assertEquals("ISNUMBER-True: 2", true, isNumber(-500));
assertEquals("ISNUMBER-True: 3", true, isNumber(15000));
assertEquals("ISNUMBER-True: 4", true, isNumber(0.35));
assertEquals("ISNUMBER-True: 5", true, isNumber(-10.35));
assertEquals("ISNUMBER-True: 6", true, isNumber(2.534e25));
assertEquals("ISNUMBER-True: 7", true, isNumber('2.534e25'));
assertEquals("ISNUMBER-True: 8", true, isNumber('52334'));
assertEquals("ISNUMBER-True: 9", true, isNumber('-234'));

assertEquals("ISNUMBER-False: 0", false, isNumber(NaN));
assertEquals("ISNUMBER-False: 1", false, isNumber({}));
assertEquals("ISNUMBER-False: 2", false, isNumber([]));
assertEquals("ISNUMBER-False: 3", false, isNumber(''));
assertEquals("ISNUMBER-False: 4", false, isNumber('one'));
assertEquals("ISNUMBER-False: 5", false, isNumber(true));
assertEquals("ISNUMBER-False: 6", false, isNumber(false));
assertEquals("ISNUMBER-False: 7", false, isNumber());
assertEquals("ISNUMBER-False: 8", false, isNumber(undefined));
assertEquals("ISNUMBER-False: 9", false, isNumber(null));
share|improve this answer

uh, how about just:

function IsString(obj) {
    return obj !== undefined && obj != null && obj.toLowerCase !== undefined;
}
share|improve this answer

Errr? Just use regular expressions! :)

function isInteger(val) {
  return val.match(/^[0-9]$/)
}

function isFloat(val) {
  return val.match(/^[0-9]*/\.[0-9]+$/)
}
share|improve this answer

Can you just divide it by 1?

I assume the issue would be a string input like: "123ABG"

var Check = "123ABG"

if(Check == Check / 1)
{
alert("This IS a number \n")
}

else
{
alert("This is NOT a number \n")
}

Just a way I did it recently.

share|improve this answer

the best way i found which also thinks of positive and negative numbers is from : O'Reilly Javascript and DHTML Cookbook :

function isNumber(elem) {
var str = elem.value;
var oneDecimal = false;
var oneChar = 0;
// make sure value hasn't cast to a number data type
str = str.toString( );
for (var i = 0; i < str.length; i++) {
    oneChar = str.charAt(i).charCodeAt(0);
    // OK for minus sign as first character
    if (oneChar =  = 45) {
        if (i =  = 0) {
            continue;
        } else {
            alert("Only the first character may be a minus sign.");
            return false;
        }
    }
    // OK for one decimal point
    if (oneChar =  = 46) {
        if (!oneDecimal) {
            oneDecimal = true;
            continue;
        } else {
            alert("Only one decimal is allowed in a number.");
            return false;
        }
    }
    // characters outside of 0 through 9 not OK
    if (oneChar < 48 || oneChar > 57) {
        alert("Enter only numbers into the field.");
        return false;
    }
}
return true;

}

share|improve this answer

since a string as '1234' with typeof will show 'string', and the inverse cannot ever happen (typeof 123 will always be number), the best is to use a simple regex /^\-?\d+$/.test(var). Or a more advanced to match floats, integers and negative numbers, /^[\-\+]?[\d]+\.?(\d+)?$/ The important side of .test is that it WON'T throw an exception if the var isn't an string, the value can be anything.

var val, regex = /^[\-\+]?[\d]+\.?(\d+)?$/;

regex.test(val)       // false 
val = '1234';
regex.test(val)       // true
val = '-213';
regex.test(val)       // true
val = '-213.2312';
regex.test(val)       // true
val = '+213.2312';
regex.test(val)       // true
val = 123;
regex.test(val)       // true
val = new Number(123);
regex.test(val)       // true
val = new String('123');
regex.test(val)       // true
val = '1234e';
regex.test(val)       // false 
val = {};
regex.test(val)       // false 
val = false;
regex.test(val)       // false 
regex.test(undefined) // false 
regex.test(null)      // false 
regex.test(window)    // false 
regex.test(document)  // false 

If you are looking for the real type, then typeof alone will do.

share|improve this answer

@BitOfUniverse's answer is good, and I come up with a new way:

function isNum(n) {
    return !isNaN(n/0);
}

isNum('')  // false
isNum(2)   // true
isNum('2k') // false
isNum('2')  //true

I know 0 can't be dividend, but here the function works perfectly.

share|improve this answer

This solution resolves many of the issues raised here!

This is by far the most reliable method I have used by far. I did not invent this, and cannot recall where I originally found it. But it works where other techniques fail:

// Begin public utility /getVarType/
// Returns 'Function', 'Object', 'Array',
// 'String', 'Number', 'Boolean', or 'Undefined'
getVarType = function ( data ){
  if (undefined === data ){ return 'Undefined'; }
  if (data === null ){ return 'Null'; }
  return {}.toString.call(data).slice(8, -1);
};  
// End public utility /getVarType/

Example of correctness

var str = new String();
console.warn( getVarType(str) ); // Reports "String"    
console.warn( typeof str );      // Reports "object"

var num = new Number();
console.warn( getVarType(num) ); // Reports "Number"
console.warn( typeof num );      // Reports "object"

var list = [];
console.warn( getVarType( list ) ); // Reports "Array"
console.warn( typeof list );        // Reports "object"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.