Answers for "name for function that check if something exists"

2

js check if function exists

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

check if function exists javascript

if (typeof payment === "function")
{
  // Do something
}
Posted by: Guest on September-18-2019

Code answers related to "name for function that check if something exists"

Code answers related to "Javascript"

Browse Popular Code Answers by Language