fix(curriculum): added extra line before </section> tag - Engl… (#36278)

This commit is contained in:
Randell Dawson
2019-07-18 08:24:12 -07:00
committed by mrugesh
parent b038af4925
commit c387873640
927 changed files with 928 additions and 0 deletions

View File

@ -82,4 +82,5 @@ console.log(myArray);
let myArray = ["a", "b", "c", "d"];
myArray[1] = "e";
```
</section>

View File

@ -90,4 +90,5 @@ function checkInventory(scannedItem) {
return foods[scannedItem];
}
```
</section>

View File

@ -79,4 +79,5 @@ function htmlColorNames(arr) {
return arr;
}
```
</section>

View File

@ -100,4 +100,5 @@ foods['grapes'] = 35;
foods['strawberries'] = 27;
// change code above this line
```
</section>

View File

@ -76,4 +76,5 @@ function quickCheck(arr, elem) {
// change code above this line
}
```
</section>

View File

@ -116,4 +116,5 @@ function isEveryoneHere(obj) {
console.log(isEveryoneHere(users));
```
</section>

View File

@ -93,4 +93,5 @@ function copyMachine(arr,num){
}
console.log(copyMachine([true, false, true], 2));
```
</section>

View File

@ -68,4 +68,5 @@ function forecast(arr) {
return arr.slice(2,4);
}
```
</section>

View File

@ -109,4 +109,5 @@ let myNestedArray = [
// change code above this line
];
```
</section>

View File

@ -97,4 +97,5 @@ function getArrayOfUsers(obj) {
console.log(getArrayOfUsers(users));
```
</section>

View File

@ -41,6 +41,7 @@ We've defined a function <code>countOnline</code> which accepts one argument (a
}
}
```
</section>
## Tests
@ -138,4 +139,5 @@ function countOnline(usersObj) {
}
```
</section>

View File

@ -100,4 +100,5 @@ function addFriend(userObj, friend) {
return userObj.data.friends;
}
```
</section>

View File

@ -92,4 +92,5 @@ let userActivity = {
userActivity.data.online = 45;
```
</section>

View File

@ -79,4 +79,5 @@ function sumOfTen(arr) {
return arr.reduce((a, b) => a + b);
}
```
</section>

View File

@ -90,4 +90,5 @@ let yourArray; // change this line
```js
let yourArray = ['a string', 100, true, ['one', 2], 'another string'];
```
</section>