Answers for "exist function in js"

1

how to check if exists in javascript

if (typeof(elem) !== 'undefined') {
Posted by: Guest on July-26-2021
2

check if function exists javascript

if (typeof payment === "function")
{
  // Do something
}
Posted by: Guest on September-18-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 "Javascript"

Browse Popular Code Answers by Language