File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ You are given a variable celsius representing a temperature in Celsius. Use the
29
29
30
30
---
31
31
32
- ### Solution
32
+ #### Solution
33
33
34
34
``` js
35
35
function convertToF (celsius ) {
@@ -52,7 +52,7 @@ Your result must be a string.
52
52
53
53
---
54
54
55
- ### Solution 1
55
+ #### Solution 1
56
56
57
57
``` js
58
58
function reverseString (str ) {
@@ -62,7 +62,7 @@ function reverseString(str) {
62
62
reverseString (" hello" );
63
63
```
64
64
65
- ### Solution 2
65
+ #### Solution 2
66
66
67
67
``` js
68
68
function reverseString (str ) {
@@ -92,7 +92,7 @@ Only integers greater than or equal to zero will be supplied to the function.
92
92
93
93
---
94
94
95
- ### Solution 1
95
+ #### Solution 1
96
96
97
97
``` js
98
98
function factorialize (num ) {
@@ -104,7 +104,7 @@ function factorialize(num) {
104
104
factorialize (5 );
105
105
```
106
106
107
- ### Solution 2
107
+ #### Solution 2
108
108
109
109
``` js
110
110
function factorialize (num ) {
@@ -128,7 +128,7 @@ Your response should be a number.
128
128
129
129
---
130
130
131
- ### Solution
131
+ #### Solution
132
132
133
133
``` js
134
134
function findLongestWordLength (str ) {
@@ -154,7 +154,7 @@ Return an array consisting of the largest number from each provided sub-array. F
154
154
155
155
Remember, you can iterate through an array with a simple for loop, and access each member with array syntax arr[ i] .
156
156
157
- ### Solution 1
157
+ #### Solution 1
158
158
159
159
``` js
160
160
function largestOfFour (arr ) {
@@ -179,7 +179,7 @@ largestOfFour([
179
179
]);
180
180
```
181
181
182
- ### Solution 2
182
+ #### Solution 2
183
183
184
184
``` js
185
185
function largestOfFour (arr ) {
You can’t perform that action at this time.
0 commit comments