nodejs check if string code example
Example 1: if string javascript
if (typeof myVar === 'string') { /* code */ };
Example 2: js test if string
if (typeof string === 'string') { /* code */ };
Example 3: javascript is variable a string
if (typeof myVar === 'string'){
//I am indeed a string
}