Skip to content

Commit fe5d6d9

Browse files
authored
Merge pull request #1765 from u-n-known/patch-3
Copy and paste mistake
2 parents 94b9c9d + dd4d218 commit fe5d6d9

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/16-arrow-functions-basics

1 file changed

+1
-1
lines changed

1-js/02-first-steps/16-arrow-functions-basics/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ let welcome = (age < 18) ?
6767
() => alert('Hello') :
6868
() => alert("Greetings!");
6969
70-
welcome(); // ok now
70+
welcome();
7171
```
7272

7373
Arrow functions may appear unfamiliar and not very readable at first, but that quickly changes as the eyes get used to the structure.

0 commit comments

Comments
 (0)