账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    javascript箭头函数连写是什么意思?
    33
    0

    javascript箭头函数连写是什么意思?一直不太理解,请大佬说详细一点,代码如下:

    let CURRENT = 'NULL';
    const renderAuthorize = Authorized => currentAuthority => {  //这一行的箭头函数连写是什么意思?
      if (currentAuthority) {
        if (typeof currentAuthority === 'function') {
          CURRENT = currentAuthority();
        }
        if (
          Object.prototype.toString.call(currentAuthority) === '[object String]' ||
          Array.isArray(currentAuthority)
        ) {
          CURRENT = currentAuthority;
        }
      } else {
        CURRENT = 'NULL';
      }
      return Authorized;
    };
    
    export { CURRENT };
    export default Authorized => renderAuthorize(Authorized);

    问题就是第2行代码的箭头函数连写,它是什么意思?

    1
    打赏
    收藏
    点击回答
        全部回答
    • 0
    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部