-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlc.js
More file actions
69 lines (48 loc) · 846 Bytes
/
lc.js
File metadata and controls
69 lines (48 loc) · 846 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//FUNCTION SUBTRACTION
function sub() {
var m = 15
var n = 10
return m-n
}
console.log(sub())
alert(sub())
//FUNCTION MULTIPLICATION
function mul() {
let e = 8
let f = 4
return e*f
}
console.log(mul())
alert(mul())
//FUNCTION CAPS
const CAPS=() => {
var input= prompt("caps lock")
var outcome = input.toUpperCase()
return outcome
}
console.log(CAPS())
alert(CAPS())
//FUNCTION DIVISION
function div() {
let a = 30
let b = 5
return a/b
}
console.log(div())
alert(div())
//FUNCTION
function sqrt() {
return Number (prompt("number")) **(1/2)
}
console.log(sqrt())
alert(sqrt())
//FUNCTION ODD OR EVEN NUMBER
function check () {
num = prompt("check for odd or even number")
num1 = num%2
num2 = num1 == 0? "even" : "odd"
return num2
}
console.log(check())
alert(check())
// //