how to check if variable is a number or string in js code example
Example: javascript is variable a string
if (typeof myVar === 'string'){
//I am indeed a string
}
if (typeof myVar === 'string'){
//I am indeed a string
}