Answers for "javascript if function exist"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language