Answers for "check if type var javascript"

0

if typeof variable javascript

// check if a variable is of a certain type
var myVar = "This is a string";

if (typeof myVar === "string") {
	console.log("It's a string!");
} else if (typeof myVar === "number") {
	console.log("It's a number!");
};
// would return "It's a string!" in this case
Posted by: Guest on October-19-2021
0

javascript check type of variable var

> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
Posted by: Guest on August-23-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language