Answers for "Check if Function Exists Before Calling angular"

2

js check if function exists

if (typeof yourFunctionName == 'function') { 
  yourFunctionName(); 
}
Posted by: Guest on March-28-2020
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 "Check if Function Exists Before Calling angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language