Javascript:计算奇数的数量

时间:2016-07-27 16:21:28

标签: javascript

我目前正处于一个javascript速成课程中,目前我正陷入一段代码中。你会在makeCountingFunction函数中看到我的评论,看看我的逻辑在哪里。任何人都可以帮助澄清发生了什么?

代码中包含教师评论。

/**
 *
 * Independent Practice: Functions and Callbacks
 *
 * GOALS
 *
 * Your goal in this exercise is for the last line of code in this file to log
 * the number of odd numbers in the array.
 *
 * DIRECTIONS
 *
 * Implement 'makeCountingFunction()', so that it accepts a predicate function
 * as an argument. 'makeCountingFunction()' should return an anonymous function
 * that is able to:
 *
 *  1. iterate through an array and apply the predicate function to each item in
 *     that array,
 *  2. increment a counter based on the result of applying the predicate function
 *     to that item (i.e. does it match what we're looking for?)
 *  3. return the final count.
 *
 * The predicate function 'isOdd()' should accept an individual number as a
 * parameter and return whether or not that number is odd.
 *
 * BONUS 1: Can you write another predicate function that counts evens?
 * BONUS 2: Can you write a function that will return the sum of all numbers?
 *
 */

 function makeCountingFunction(predicate) {     //delcare the function with the parameter predicate
   return function(list) {                     // this returns a second function with the parameter list
      var count = 0;                               // a variable count is declared with the value of 0
      list.forEach(function(item) {               //this states that for each item of the paramter the code needs to return a third function that has a parameter called item
        if (predicate(item)) {                   // this declares that if the parameter predicate.... has something to do with item???? this is where im lost
         count++;                              // the variable count increments by 1
   }
 })
 return count;                           // returns the value of count. This gives up the number of odd integers.
   };
 }

function isOdd(a) {
  return (a % 2) !== 0
}

//     =============================================================================
// The code below should work without modification.
//     =============================================================================

/**
 * The line below should package up 'makeCountingFunction()' and 'isOdd()' into
 * a single function that accepts an array of items as a parameter, iterates
 * through it and returns a count of how many of those items are odd numbers.
 * This new function is being assigned to the variable 'countTheOdds'.
 */

var countTheOdds = makeCountingFunction(isOdd);

/**
 * The final line below calls our new 'countTheOdds()' function and passes in an
 * array of numbers. Once your code is working, the line below should return the
 * number 4.
 */

var oddCount = countTheOdds([1, 2, 3, 4, 5, 6, 7]);
console.log('There are ' + oddCount + ' odd numbers.');
// expected output: There are 4 odd numbers.

1 个答案:

答案 0 :(得分:-1)

list.forEach(function(item) {您对此行的分析不正确。您正在调用item的每个list上的函数,而不是返回函数。在您说丢失的下一行中,请记住predicate函数,在这种情况下,如果谓词函数对item的{​​{1}}返回true },递增计数器。

看起来你的工作是编写有问题的谓词函数,对于even和false返回true,然后调用它上面提供的函数,获取返回的函数并用一个数字列表调用它来验证它的工作原理:

list