js 定义函数的几种方法 以及如何调用

2024-12-13 10:33:27
推荐回答(1个)
回答1:

定义方法一般用这两种方式: 1. var foo=function(){}; 2. function foo(){} 调用方法为 foo() 比如: