js函数的几种写法 闭包概要最常见的:Js代码1functionfoo() {2alert('hi, js')3}4foo()用匿名函数:Js代码1varfoo =function() {2alert('hi, js')3}4f2023-04-28JavaScript250