diff --git a/docs/Exercise/JavaScript_Basics/filter.md b/docs/Exercise/JavaScript_Basics/filter.md new file mode 100644 index 0000000..0261188 --- /dev/null +++ b/docs/Exercise/JavaScript_Basics/filter.md @@ -0,0 +1,7 @@ +1. **Create** an array called numbers with the next elements +`array` = [21,10,5,9,100,2,5,6,90,25,14,32] +2. **Filter** the numbers greater than 10 +3. **Print** the result of filter + + **Expected Output**: + [21,100,90,25,14,32] \ No newline at end of file