From d3d182e9daf88e989f5117a1b127b865f93c8724 Mon Sep 17 00:00:00 2001 From: Armen Vartan Date: Mon, 1 Dec 2014 16:35:48 -0500 Subject: [PATCH] js 7 --- javascript/7-simple-loops/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/7-simple-loops/README.md b/javascript/7-simple-loops/README.md index aec09fd..477b899 100644 --- a/javascript/7-simple-loops/README.md +++ b/javascript/7-simple-loops/README.md @@ -1,8 +1,8 @@ -###Simple Loops and Iteration +Simple Loops and Iteration +========================== You are given an array (challengeArray) at the top. Using a loop, compare the values inside. If a value in the list is "Dog", switch it to "Burger". - -###Assertion +#### Assertion Make sure your results are printing so you know its working- because you're not going to get much from the assert test. Why is that? Google it and write the answer, as well as your own.