Skip to content

Commit b5fc53a

Browse files
Add lesson 3 code
1 parent fec60ac commit b5fc53a

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
11
'hello'
2-
alert('hello');
2+
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

Comments
 (0)