Answers for "js check if function defined"

7

javascript check if function exists

//check if sayHello() function exists
if (typeof sayHello === "function") { 
    // This function exists
}
Posted by: Guest on August-02-2019
0

check if function javascript

variableToCheck instanceof Function
Posted by: Guest on August-25-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language