开发者学堂课程【JavaScript 入门与实战:函数当作参数 1】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/582/detail/8041
函数当作参数 1
目录
一、具体内容
二、演示
一、具体内容
//函数也是一种数据类型
function fn() {
}
// funtion
数据类型 --> 对象(数组、函数)
console.log( typeof fn);
二、演示
function f1(s) {
var k = 123+S;
console.log.(k);
s();
}
var f2 = function(){
console.log(222);
}
// f2 函数会被当做值,传入 f1 函数内
f1(f2);