We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821267e commit 4524145Copy full SHA for 4524145
1-js/02-first-steps/16-arrow-functions-basics/article.md
@@ -65,7 +65,7 @@ let age = prompt("Wie alt bist Du?", 18);
65
66
let welcome = (age < 18) ?
67
() => alert('Hallo') :
68
- () => alert("Willkommen!");
+ () => alert("Grüße!");
69
70
welcome(); // ok now
71
```
0 commit comments