Answers for "lohow to check if variable is string javbascript"

0

javascript check if var is string

if (typeof a_string === 'string') {
    // this is a string
}
Posted by: Guest on October-12-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 "lohow to check if variable is string javbascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language