Skip to content

Commit 4524145

Browse files
Update 1-js/02-first-steps/16-arrow-functions-basics/article.md
1 parent 821267e commit 4524145

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ let age = prompt("Wie alt bist Du?", 18);
6565
6666
let welcome = (age < 18) ?
6767
() => alert('Hallo') :
68-
() => alert("Willkommen!");
68+
() => alert("Grüße!");
6969
7070
welcome(); // ok now
7171
```

0 commit comments

Comments
 (0)