I have two methods with the same name, for different purposes in 2 different .js files. How can I use those methods on same page?
In Count.js:
funct
If they're both defined using function declarations, like
function iHaveTheSameNameAsAnotherFunction(params) { … }
then you can't. The second declaration will simply overwrite the first one.