I found a bug in Step 7 of the JavaScript Algorithms and Data Structures course under “Learn Advanced Array Methods by Building a Statistics Calculator.”
The test is incorrectly passing my solution even though my '' method contains a syntax error. My incorrect code:
Subject: Bug in Step 7 of JavaScript Algorithms and Data Structures Course
Hi FreeCodeCamp team,
I found an issue in Step 7 of the JavaScript Algorithms and Data Structures course under “Learn Advanced Array Methods by Building a Statistics Calculator.”
The test is incorrectly passing my solution even though my filter method contains a syntax error. Here’s my incorrect code:
The callback function in the filter method implicitly returns undefined because it uses {} without a return statement. The correct syntax should be one of the following:
Subject: Bug in Step 7 of JavaScript Algorithms and Data Structures Course
Hi FreeCodeCamp team,
I found an issue in Step 7 of the JavaScript Algorithms and Data Structures course under “Learn Advanced Array Methods by Building a Statistics Calculator.”
The test is incorrectly passing my solution even though my filter method contains a syntax error. Here’s my incorrect code:
The callback function in the filter method implicitly returns undefined because it uses {} without a return statement. The correct syntax should be one of the following:
Sorry, here is the corrected version of my request Subject: Bug in Step 7 of JavaScript Algorithms and Data Structures Course
Hi FreeCodeCamp team,
I found an issue in Step 7 of the JavaScript Algorithms and Data Structures course under “Learn Advanced Array Methods by Building a Statistics Calculator.”
The test is incorrectly passing my solution even though my filter method contains a syntax error. Here’s my incorrect code:
The callback function in the filter method implicitly returns undefined because it uses {} without a return statement. The correct syntax should be one of the following:
For everyone checking out this post, here is a corrected version of my question or request
Subject: Bug in Step 7 of JavaScript Algorithms and Data Structures Course
Hi FreeCodeCamp team,
I found an issue in Step 7 of the JavaScript Algorithms and Data Structures course under “Learn Advanced Array Methods by Building a Statistics Calculator.”
The test is incorrectly passing my solution even though my filter method contains a syntax error. Here’s my incorrect code:
The callback function in the filter method implicitly returns undefined because it uses {} without a return statement. The correct syntax should be one of the following: