📜  javascript 函数表达式 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.405000             🧑  作者: Mango

代码示例1
const mul = function(x, y){
    return x * y;
}; //semicolon needs to be there as it is expression

console.log(mul(10, 20));