Answers for "if value is string js"

1

check if value string js

var value = "test string"
console.log(typeof value === "string")
Posted by: Guest on October-25-2021
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"

Browse Popular Code Answers by Language