Answers for "how to check function exists in javascript"

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
2

js check if function exists

if (typeof yourFunctionName == 'function') { 
  yourFunctionName(); 
}
Posted by: Guest on March-28-2020
-2

function exists javascript

How to check if function exists in JavaScript?
Posted by: Guest on June-11-2021

Code answers related to "how to check function exists in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language