weixin_52812390 2021-08-02 00:05 采纳率: 100%
浏览 55
已结题

为什么结果是undefined?求解


function calculate(command,a,b) {
  if (command === 'add') {
    add(a,b);
  } else if (command === 'substract') {
    substract(a,b);
  } else if (command === 'divide') {
    divide(a,b);
  } else if (command === 'remainder') {
    remainder(a,b);
  }
}
const add = function (a,b) {
  return a + b;
}
const substract = (a,b) => a - b;
const divide = (a,b) => a / b;
const remainder = function (a,b) {
  return a % b;
}
console.log(calculate('add',1,2));
  • 写回答

1条回答 默认 最新

  • 关注

    你 calculate(command,a,b) 函数没有用 return 返回add(a,b)的值。
    应该是

    function calculate(command,a,b) {
      if (command === 'add') {
        return add(a,b);
      } else if (command === 'substract') {
        return substract(a,b);
      } else if (command === 'divide') {
        return divide(a,b);
      } else if (command === 'remainder') {
        return remainder(a,b);
      }
    }
    const add = function (a,b) {
      return a + b;
    }
    const substract = (a,b) => a - b;
    const divide = (a,b) => a / b;
    const remainder = function (a,b) {
      return a % b;
    }
    console.log(calculate('add',1,2));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 8月10日
  • 已采纳回答 8月2日
  • 创建了问题 8月2日

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度