fix(curriculum): added extra line before </section> tag - Engl… (#36278)
This commit is contained in:
@ -63,4 +63,5 @@ let exp = 3;
|
||||
let power = raiseToPower(base, exp);
|
||||
console.log(power);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -73,4 +73,5 @@ function getNine() {
|
||||
let result = getNine();
|
||||
console.log(result);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -62,4 +62,5 @@ let payables = 8;
|
||||
let netWorkingCapital = receivables - payables;
|
||||
console.log(`Net working capital is: ${netWorkingCapital}`);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -69,4 +69,5 @@ console.log(innerHtml);
|
||||
let innerHtml = "<p>Click here to <a href=\"#Home\">return home</a></p>";
|
||||
console.log(innerHtml);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -92,4 +92,5 @@ function countToFive() {
|
||||
|
||||
countToFive();
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -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>
|
||||
|
@ -83,4 +83,5 @@ if(x === y) {
|
||||
|
||||
console.log(result);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -68,4 +68,5 @@ function myFunc() {
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -88,4 +88,5 @@ function zeroArray(m, n) {
|
||||
let matrix = zeroArray(3, 2);
|
||||
console.log(matrix);
|
||||
```
|
||||
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user