Use two methods of the same name in different .js files

后端 未结 2 1725
予麋鹿
予麋鹿 2020-12-09 05:47

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         


        
2条回答
  •  Happy的楠姐
    2020-12-09 05:59

    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.

提交回复
热议问题