Java脚本。如何选择任何数组的数组

时间:2017-03-07 03:29:27

标签: javascript arrays

我正在设计一个测验激励因素,即如果用户输入任意数量的正确答案,他将获得奖励“明星”或smth。下面的伪代码中的数组表示一系列正确答案可供选择:

var rightAnswers = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];

if (rightAnswers.chooseAny(3)) {user gets a star}
else if (rightAnswers.chooseAny(6)) {user gets 2 stars}
else if (rightAnswers.chooseAny(9) {user gets 3 stars}

我没有找到任何可行的代替我的伪“chooseAny()”,有什么想法吗?

1 个答案:

答案 0 :(得分:1)

你可能不是在寻找chooseAny函数;我认为你真正要求的是根据一组answersanswerKey来计算多少答案是正确的方法。

下面的getTotalCorrect函数会为您使用for循环和身份比较,并且您可以使用getStars根据返回的分数确定应该授予多少颗星。< / p>

var answerKey = ['a', 'b', 'c', 'd', 'e', 'f', 'g']

function getTotalCorrect (answers, answerKey) {
  for (var correct = 0, i = 0; i < answerKey.length; i++) {
    if (answers[i] === answerKey[i]) correct++
  }
  return correct
}

function getStars (totalCorrect) {
   return (totalCorrect / 3) | 0
}

var totalCorrect = getTotalCorrect(['a', 'a', 'c', 'c', 'e', 'e', 'e'], answerKey)
console.log(totalCorrect) //=> 3

var stars = getStars(totalCorrect)
console.log(stars) //=> 1