Answers for "javascript check if it string"

5

js test if string

if (typeof string === 'string') { /* code */ };
Posted by: Guest on April-18-2020
1

if is a string javascript

function isString(x) {
  return Object.prototype.toString.call(x) === "[object String]"
}
Posted by: Guest on April-06-2021

Code answers related to "javascript check if it string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language