Answers for "js check if variable is a string"

13

javascript is variable a string

if (typeof myVar === 'string'){
    //I am indeed a string
}
Posted by: Guest on July-23-2019
0

javascript check if var is string

if (typeof a_string === 'string') {
    // this is a string
}
Posted by: Guest on October-12-2020

Code answers related to "js check if variable is a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language