Answers for "js check if something is string"

4

js test if string

if (typeof string === 'string') { /* code */ };
Posted by: Guest on April-18-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 "js check if something is string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language