📜  javascript代码示例中的箭头函数

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

代码示例6
let numbers = (x, y, z) => (x + y + z) * 2;
console.log(numbers(3, 5, 9))
//Expected output:34