diff --git a/javascript/computer_science/recursive_methods.md b/javascript/computer_science/recursive_methods.md
index 5e4d2d1243f..766d15b850f 100644
--- a/javascript/computer_science/recursive_methods.md
+++ b/javascript/computer_science/recursive_methods.md
@@ -25,7 +25,7 @@ This section contains a general overview of topics that you will learn in this l
- 1. Read this [intro to recursion](https://javascript.info/recursion).
+ 1. Read this [intro to recursion](https://javascript.info/recursion). You do *not* need to complete the exercises at the end of the article.
1. Watch this [explanation of recursion by Web Dev Simplified](https://www.youtube.com/watch?v=6oDQaB2one8) and this additional [example of recursion by DevSage](https://youtu.be/LteNqj4DFD8?t=340).
1. Watch this [Video on Recursion](https://www.youtube.com/watch?v=mz6tAJMVmfM) from CS50.
1. Read the ["Implementation Issues" section of the wiki article](http://en.wikipedia.org/wiki/Divide_and_conquer_algorithm#Implementation_issues) to get an overview of some of the limitations of recursion.