js check function exits code example
Example 1: javascript check if function exists
//check if sayHello() function exists
if (typeof sayHello === "function") {
// This function exists
}
Example 2: js check if function exists
if (typeof yourFunctionName == 'function') {
yourFunctionName();
}