函数 一组功能的集合
主要创建方式
function是关键字
Function 函数名(){
函数体
}
函数参数:主要功能从外部接收数据
Function 函数名(参数一,参数二){
函数体
}
函数的使用方法
1.直接写
函数名()
2.有参数的写
函数名(参数一,参数二)
函数的简写方式 (箭头函数)
Let 函数名=(参数)=>{}
function star(){
console.log("提示",'sssss')
console.log("提示",'aaaa')
console.log("提示",'bbbb')
console.log("提示",'bbaaa')
}
//它的参数格式 参数名:参数类型
function price(price:number,weigh:number){//形参
let num:number=price*weigh;
return num
}
console.log("价格:",price(2,5))
let banner:number=price(3,2)//实参
console.log('价格2:',banner)
//箭头函数
let fn=(x:number,y:number=0)=>{
return x+y
}