JavaScript 函数的定义
🌙
手机阅读
本文目录结构
函数的定义
- function语句的定义方法
- 函数直接量的定义方法(需要考虑变量的预解释)
- 构造函数的定义方法
//function语句的定义方法
function test1(arg1,arg2){
console.log("function语句的定义方法:",arg1+arg2);
}
//函数直接量的定义方法
var test2 = function(arg1,arg2){
console.log("函数直接量的定义方法:",arg1+arg2);
};
//重要
var utility={
init:function () {
console.log("执行")
}
};
//构造函数的定义方法
var test3 = new Function("arg1","arg2","console.log('构造函数的定义方法:',arg1+arg2)");
前两种定义方式,比较常见,最后一种做了解即可