From b38858b86ebc5c8a78558461b9f089295bc11168 Mon Sep 17 00:00:00 2001 From: RemanthManyam <84663578+RemanthManyam@users.noreply.github.com> Date: Wed, 23 Oct 2024 04:07:18 +0530 Subject: [PATCH] Update arrays_and_loops.md Updated line 29 to make it look nicer --- foundations/javascript_basics/arrays_and_loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/javascript_basics/arrays_and_loops.md b/foundations/javascript_basics/arrays_and_loops.md index ea42e9e6ba9..1bc9bd67eb3 100644 --- a/foundations/javascript_basics/arrays_and_loops.md +++ b/foundations/javascript_basics/arrays_and_loops.md @@ -26,7 +26,7 @@ Strings and numbers may be our building blocks, but as your scripts get more com Computers don't get tired, and they're really, *really* fast! For that reason, they are well suited to solving problems that involve doing calculations multiple times. In some cases, a computer will be able to repeat a task *thousands* or even *millions* of times in just a few short seconds where it might take a human many hours. \(Obviously, speed here depends on the complexity of the calculation and the speed of the computer itself\). One way to make a computer do a repetitive task is using a **loop**. 1. Read [MDN's Looping Code](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Looping_code). It's a longer one, but make sure you tackle the 'Active Learning' sections at the bottom of the page. -1. Once again, same info, slightly different context from [JavaScript.info's "Loops: While and For"](http://javascript.info/while-for). \(Skim the info if you think you know it all, but **don't forget the tasks at the end of the page**. You learn best by *doing*.\) +2. Once again, same info, slightly different context from [JavaScript.info's "Loops: While and For"](http://javascript.info/while-for). Be sure to do the exercises at the end of the page. You learn best by doing. ### Test Driven Development