Resolved! Difference between way of Initializing the script include
What is the difference between the below two ways of instantiating an object to a script include (class) Way 1: var obj = new scriptIncludeName();obj.functionName(); Way 2:var obj = scriptIncludeName.create();obj.functionName(); Both methods do the...
