常用函数类型
命名函数
// 命名函数
function test(num = '') {}
匿名函数
1.普通匿名函数
// 匿名函数
let test1 = function (num = '') {};
2.匿名函数(立即调用函数)
//匿名函数(立即调用函数):声明与调用二合一
console.log(
(function (username) {
return "Hello" + username;
})("zhang")
);
3.箭头函数:简化匿名函数
// 箭头函数:简化匿名函数
let ceshi = (a, b) => {
return a + b;
};
console.log(ceshi(3, 2));
常用数据类型
1.原始类型
number,string,boolean,undefined,null
2.引用类型
arrat,object,function