How can I check if a var is a string in JavaScript?
I've tried this and it doesn't work...
var a_string = "Hello, I'm a string.";
if (a_string typeof 'string') {
// this is a string
}
|
How can I check if a var is a string in JavaScript? I've tried this and it doesn't work...
|
||||
|
|
|
You were close:
On a related note: the above check won't work if a string is created with |
|||||
|
|
The You need to use it like so...
Remember, Also, you may as well use As Box9 mentions, this won't detect a instantiated You can detect for that with....
...or...
But this won't work in a multi You can get around this with...
But again, (as Box9 mentions), you are better off just using the literal |
|||||||||||
|
|