调用函数时返回函数的最佳方法是什么?

时间:2020-08-30 00:34:40

标签: javascript function return

我想将函数返回到函数表达式。我不确定最好的解决方法。

const btn = document.querySelector(‘#btn’);
const textValue = document.querySelector(#textBox);

var jobQuestion =
  btn.addEventListener(click, function() {
      interviewQuestion(textValue);
  })

function interviewQuestion(job) {
  if (job.value === “driver”) {
    return function() {
      console.log(“have you had a speeding fine before”);
    }
  } else if (job.value === “doctor”) {
    return function() {
      console.log(“what university did you go to ? ”)
    }
  }
}

jobQuestion();

textValue是输入类型文本框。这是合法的方式吗?非常抱歉。我的妻子正在笔记本电脑上班,所以我在手机上做噩梦。谢谢大家

0 个答案:

没有答案