Answers for "for check the var is string or not in javascript"

6

js check if variable is string

if (typeof myVar === 'integer'){
    //I am indeed an integer
}

if (typeof myVar === 'boolean'){
    //I am indeed a boolean
}
Posted by: Guest on March-19-2020
0

if variable is string javascript

var booleanValue = true; 
var numericalValue = 354;
var stringValue = "This is a String";
var stringObject = new String( "This is a String Object" );
alert(typeof booleanValue) // displays "boolean"
alert(typeof numericalValue) // displays "number"
alert(typeof stringValue) // displays "string"
alert(typeof stringObject) // displays "object"
Posted by: Guest on November-02-2020

Code answers related to "for check the var is string or not in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language