Answers for "how to check and execute if a function exists in js"

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
1

javascript check if function exists

if (typeof sourceObj.someMethod === "function") { 
    // you are safe using the method
  	sourceObj.someMethod();
}
Posted by: Guest on May-02-2020

Code answers related to "how to check and execute if a function exists in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language