Answers for "how to check variable is string type in typescript"

6

js check if variable is string

if (typeof myVar === 'integer'){
    //I am indeed an integer
}

if (typeof myVar === 'boolean'){
    //I am indeed a boolean
}
Posted by: Guest on March-19-2020

Code answers related to "how to check variable is string type in typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language