关于JS中clamp和=>的问题

请问一下

const clamp = min => max => n => Math.max(min, Math.min(max, n));

这一句是什么意思,符号=>只是单纯的大于等于的意思么?


幕布斯6054654
浏览 947回答 1
1回答

慕尼黑8549860

=> 是 ES6 中的新特性 —— 箭头函数。const clamp = min => max => n => Math.max(min, Math.min(max, n)); // 等价于 const clamp = function (min) {  return function (max) {    return function (n) {       return Math.max(min, Math.min(max, n));     }   } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript