1. 语法
function 函数名(){
语句......
}
2. 定义和调用函数
- 语法:函数名()
- 使用typeof检查函数对象时返回function
- 定义方式
(1)函数声明
(2)函数表达式
(3)箭头函数
// 创建一个函数
function fn(){
console.log("你好!");
console.log("Hello!");
console.log("xxxx!");
}
// 调用函数
fn();
// 检查类型
console.log(typeof fn); // function
// (1)函数声明
function fn(){
console.log("函数声明所定义的函数");
}
// (2)函数表达式
const fn2 = function(){
console.log("函数表达式");
};
// (3)箭头函数
const fn3 = () => {
console.log("箭头函数");
};
3. 参数
- 可以为参数设置默认值
const fn = (a=10,b=20,c=30) => {
console.log(a,b,c);
};
fn(1,2); // 1 2 30
标签:function,console,函数,JavaScript,笔记,const,fn,log
From: https://www.cnblogs.com/zibocoder/p/17052793.html