函式柯里化

weixin_45160559發表於2020-09-23
  1. 函式
    概念:實現特定功能的程式碼塊 複用性 安全性
    定義函式
    function 函式名(引數列表){ //引數列表 arguments
    函式體
    return 返回值 //如果無返回值 可以省寫 但是返回 undefined
    }
    2.自定義函式

例子:兩數求和
function add(a,b){
return a+b;
}
add(1,2)
//控制檯列印輸出helloworld
function print(){
console.log(“hello world”)
return //可以不寫
}
print()

柯里化

概念:是把接受多個引數的

相關文章