Answers for "javascript if variable value is a certain string"

1

check if value string js

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

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 "javascript if variable value is a certain string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language