You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: coderoad.json
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@
9
9
"pages": [
10
10
{
11
11
"title": "Filter",
12
-
"description": "Last semester's grades just came in, but there's just too much data.",
13
-
"explanation": "Use the `filter` method to shorten the data to only what you need.\n\n```\n['a', 'b', 'c'].filter(function(item) {\n return item === 'a';\n});\n// ['a']\n```",
12
+
"description": "We'll start by looking at the `filter` method.",
13
+
"explanation": "Last semester's grades just came in, but there's just too much data.\n\nUse the `filter` method to shorten the data to only what you need.\n\n```\n['a', 'b', 'c'].filter(function(item) {\n return item === 'a';\n});\n// ['a']\n```",
14
14
"tasks": [
15
15
{
16
16
"description": "Set `var myData` equal to `filter`ed down data with your name: \"Jane\".",
0 commit comments