js var is string code example
Example 1: is string javascript
function isString(value) {
return typeof value === 'string' || value instanceof String;
}
isString('');
isString(1);
isString({});
isString([]);
isString(new String('teste'))
Example 2: javascript is variable a string
if (typeof myVar === 'string'){
}
Example 3: 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)
alert(typeof numericalValue)
alert(typeof stringValue)
alert(typeof stringObject)