-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreecodecamp1.html
More file actions
50 lines (43 loc) · 841 Bytes
/
freecodecamp1.html
File metadata and controls
50 lines (43 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const product = 8 * 10;
const quotient = 66 / 33;
let myVar = 87;
// Only change code below this line
myVar++;
let myVar = 11;
// Only change code below this line
myVar--;
const ourDecimal = 5.7;
// Only change code below this line
var myDecimal = 5.7
const product = 2.0 * 2.5;
const quotient = 4.4 / 2.0; // Change this line
const remainder = 11 % 3;
let a = 3;
let b = 17;
let c = 12;
// Only change code below this line
a += 12;
b += 9;
c += 7;
let a = 11;
let b = 9;
let c = 3;
// Only change code below this line
a -= 6;
b -= 15;
c -= 1;
let a = 5;
let b = 12;
let c = 4.6;
// Only change code below this line
a *= 5;
b *= 3;
c *= 10;
let a = 48;
let b = 108;
let c = 33;
// Only change code below this line
a /= 12;
b /= 4;
c /= 11;
const myStr = "I am a \"double quoted\" string inside \"double quotes\"."; // Change this line