We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 98b840e + 8e48598 commit 603170bCopy full SHA for 603170b
1-js/02-first-steps/17-arrow-functions-basics/article.md
@@ -64,7 +64,7 @@ For instance, to dynamically create a function:
64
let age = prompt("What is your age?", 18);
65
66
let welcome = (age < 18) ?
67
- () => alert('Hello') :
+ () => alert('Hello!') :
68
() => alert("Greetings!");
69
70
welcome();
0 commit comments