蒼天家 本家
箭頭符號 2018-05-02
 const x = (x) => (y) => (z) => x * y * z;
 console.log(x(1)(2)(3));

 相當於

 const y = function(x) {
  return function(y) {
   return function(z) {
    return x * y * z;
   }
  }
 }

 console.log(y(1)(2)(3));

 值可往內傳遞
關於我

隨手用部落格

紀錄平時學習用到的東西

考慮想重改版

Github 自學倉庫

我的 Github 帳號

PHP開發

公司: 原生PHP

個人: Slim -> Flight