Answers for "react check if parameter is string"

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 "react check if parameter is string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language