js的变量名字可以和方法名字一样吗不可以一样,如果一样则会被覆盖。比如:<script>var a = 'abcd'function a(){ alert('1')}alert(a)这里的a是变量ab2023-02-21JavaScript120