We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec60ac commit b5fc53aCopy full SHA for b5fc53a
1 file changed
2-copy-of-code/lesson-03/strings.js
@@ -1,2 +1,27 @@
1
'hello'
2
-alert('hello');
+alert('hello');
3
+
4
+'some' + 'text'
5
+'some' + 'more' + 'text'
6
7
+typeof 2
8
+typeof 'hello'
9
10
+'hello' + 3
11
+'$' + 20.95 + 7.99
12
+'$' + (20.95 + 7.99)
13
+'$' + (2095 + 799) / 100
14
15
+'Items (' + (1 + 1) + '): $' + (2095 + 799) / 100
16
+alert('Items (' + (1 + 1) + '): $' + (2095 + 799) / 100);
17
18
+"hello"
19
+"I'm learning JavaScript"
20
21
+'I\'m learning JavaScript'
22
+alert('some\ntext');
23
24
+`hello`
25
+`Items (${1 + 1}): $${(2095 + 799) / 100}`
26
+`some
27
+text`
0 commit comments