We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95fff67 + 9273451 commit a463991Copy full SHA for a463991
docs/Exercise/JavaScript_Basics/filter.md
@@ -0,0 +1,7 @@
1
+1. **Create** an array called numbers with the next elements
2
+`array` = [21,10,5,9,100,2,5,6,90,25,14,32]
3
+2. **Filter** the numbers greater than 10
4
+3. **Print** the result of filter
5
+
6
+ **Expected Output**:
7
+ [21,100,90,25,14,32]
0 commit comments