forked from ironhack-labs/lab-js-data-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
92 lines (84 loc) · 2.24 KB
/
index.js
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*******************************************
Iteration 1.1 | Tongue Twister
*******************************************/
const s1 = "Fred";
const s2 = "fed";
const s3 = "Ted";
const s4 = "bread";
const s5 = "and";
// Concatenate the string variables into one new string
const tongueTwister =
s1 +
" " +
s2 +
" " +
s3 +
" " +
s4 +
" " +
s5 +
" " +
s3 +
" " +
s2 +
" " +
s1 +
" " +
s4 +
" ";
// Print out the concatenated string
console.log(tongueTwister);
/*******************************************
Iteration 1.2 | Camel Tail
*******************************************/
const part1 = "java";
const part2 = "script";
// Convert the last letter of part1 and part2 to uppercase and concatenate the strings
const newPart1 =
part1.slice(0, part1.length - 1) + part1[part1.length - 1].toUpperCase();
const newPart2 = part2[0].toUpperCase() + part2.slice(1);
// Print the cameLtaiL-formatted string
const result = newPart1 + newPart2;
console.log(result);
/*******************************************
Iteration 2.1 | Calculate Tip
*******************************************/
const billTotal = 84;
// Calculate the tip (15% of the bill total)
const tipAmount = billTotal * 0.15;
// Print out the tipAmount
console.log(tipAmount);
/*******************************************
Iteration 2.2 | Generate Random Number
*******************************************/
// Generate a random integer between 1 and 10 (inclusive)
const randomNumber = Math.floor(Math.random() * 10) + 1;
// Print the generated random number
console.log(randomNumber);
/*******************************************
Iteration 3.1 | Booleans
*******************************************/
const a = true;
const b = false;
// Try and guess the output of the below expressions first and write your answers down:
const expression1 = a && b;
// false
console.log(expression1);
const expression2 = a || b;
// true
console.log(expression2);
const expression3 = !a && b;
// false
console.log(expression3);
const expression4 = !(a && b);
// false - true
console.log(expression4);
const expression5 = !a || !b;
// true
console.log(expression5);
const expression6 = !(a || b);
// true - false
console.log(expression6);
const expression7 = a && a;
// true
console.log(expression7);