Answers for "check if type node js"

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
1

node js check type of variable

if (typeof i != "number") {
    console.log('This is not number');
}
Posted by: Guest on April-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language