Answers for "how i can check if string in js"

22

if string javascript

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

check if value string js

var value = "test string"
console.log(typeof value === "string")
Posted by: Guest on October-25-2021

Code answers related to "how i can check if string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language