Skip to content

Commit 169af06

Browse files
fix: js how can you change the casing of a string code example (freeCodeCamp#57556)
1 parent 183e3cf commit 169af06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curriculum/challenges/english/25-front-end-development/lecture-working-with-common-string-methods/67326c1fdaf9c0c5ad1a2589.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Think about how `toUpperCase()` affects the entire string.
5353
What will the following code output?
5454

5555
```js
56-
javascriptCopy codelet phrase = "JavaScript is Fun!";
56+
let phrase = "JavaScript is Fun!";
5757
console.log(phrase.toLowerCase());
5858
```
5959

0 commit comments

Comments
 (0)