Ad
  • Custom User Avatar

    See the initial code:

    var summation = function (num) {
      // Code here
    }
    

    And read the error message:

    ReferenceError: summation is not defined
    

    Don't change the function's name. The tests look for summation, not for sumUp.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution