Fixed a typo in line 41
Corrected the word "this" so it starts with an upper case "T".
This commit is contained in:
parent
6b0e0e55e3
commit
36e36b5278
|
@ -38,7 +38,7 @@ Go ahead and see if you can make the test pass by editing the return value of th
|
||||||
|
|
||||||
Just to make sure, in case you're confused at this point, the test is telling you that running the function `helloWorld` should return the phrase `Hello, World!`. Punctuation and capitalization definitely matter here, so double check that if the test still isn't passing.
|
Just to make sure, in case you're confused at this point, the test is telling you that running the function `helloWorld` should return the phrase `Hello, World!`. Punctuation and capitalization definitely matter here, so double check that if the test still isn't passing.
|
||||||
|
|
||||||
this is what the final function should look like:
|
This is what the final function should look like:
|
||||||
```javascript
|
```javascript
|
||||||
const helloWorld = function() {
|
const helloWorld = function() {
|
||||||
return 'Hello, World!'
|
return 'Hello, World!'
|
||||||
|
|
Loading…
Reference in New Issue