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

@ -63,4 +63,5 @@ let exp = 3;
let power = raiseToPower(base, exp);
console.log(power);
```
</section>

View File

@ -73,4 +73,5 @@ function getNine() {
let result = getNine();
console.log(result);
```
</section>

View File

@ -62,4 +62,5 @@ let payables = 8;
let netWorkingCapital = receivables - payables;
console.log(`Net working capital is: ${netWorkingCapital}`);
```
</section>

View File

@ -69,4 +69,5 @@ console.log(innerHtml);
let innerHtml = "<p>Click here to <a href=\"#Home\">return home</a></p>";
console.log(innerHtml);
```
</section>

View File

@ -54,4 +54,5 @@ let myArray = [1, 2, 3];
let arraySum = myArray.reduce((previous, current) => previous + current);
console.log(`Sum of array values is: ${arraySum}`);
```
</section>

View File

@ -88,4 +88,5 @@ function zeroArray(m, n) {
let matrix = zeroArray(3, 2);
console.log(matrix);
```
</section>