check that variable is a string javascript code example
Example 1: js check if variable is string
if (typeof myVar === 'integer'){
//I am indeed an integer
}
if (typeof myVar === 'boolean'){
//I am indeed a boolean
}
Example 2: check data type in javascript
typeof("string"); //string
typeof(123); //number