javascript test if string is a string code example
Example 1: if string javascript
if (typeof myVar === 'string') { /* code */ };
Example 2: js test if string
if (typeof string === 'string') { /* code */ };
if (typeof myVar === 'string') { /* code */ };
if (typeof string === 'string') { /* code */ };