-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.js
More file actions
60 lines (50 loc) · 1.24 KB
/
javascript.js
File metadata and controls
60 lines (50 loc) · 1.24 KB
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
let a = 10
console.log(a*9)
let b = 7 * a
console.log(b)
const MAX = 57
let actual = 10
percentage = actual/MAX
console.log(percentage)
const string = 'The revolution will not be televised.';
console.log(string);
const badString = string;
console.log(badString);
const sglDbl = 'Would you eat a "fish supper"?';
const dblSgl = "I'm feeling blue.";
console.log(sglDbl);
console.log(dblSgl);
const myString = '123';
console.log(typeof myString);
let mystring = "lower case string";
mystring.toUpperCase();
console.log(mystring);
// 'LOWER CASE STRING'
console.log(mystring.length)
// 17
function squared(num) {
return num * num;
}
function cubed(num) {
return num * num * num;
}
function factorial(num) {
if (num < 0) return undefined;
if (num == 0) return 1;
let x = num - 1;
while (x > 1) {
num *= x;
x--;
}
return num;
}
input.addEventListener('change', () => {
const num = parseFloat(input.value);
if (isNaN(num)) {
para.textContent = 'You need to enter a number!';
} else {
para.textContent = `${num} squared is ${squared(num)}. `;
para.textContent += `${num} cubed is ${cubed(num)}. `;
para.textContent += `${num} factorial is ${factorial(num)}. `;
}
});