-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.ts
More file actions
56 lines (48 loc) · 1.17 KB
/
main.ts
File metadata and controls
56 lines (48 loc) · 1.17 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
import inquirer from "inquirer";
let myBalance = 10000; // Dollar
myBalance += 4000;
console.log(myBalance)
let myPin = 6793;
let pinAnswer = await inquirer.prompt(
[
{
name: "pin",
message: "enter your pin",
type: "number",
}
]
);
// 67935 === 6793 - false
if (pinAnswer.pin === myPin) {
console.log("Correct Pin code!!!");
let operationAns = await inquirer.prompt(
[
{
name:"operation",
message:"Please select option",
type:"List",
choices:["withdraw", "check balance"]
}
]
);
console.log(operationAns);
if (operationAns === "withdraw"){
let amountAns = await inquirer.prompt(
[
{
name: "amount",
message: "enter your amount",
type:"number,"
}
]
);
// =, -=, +=
myBalance -= amountAns.amount;
console.log("your remaining balance is: " + myBalance);
}else if (operationAns.operation === "check balance"){
console.log("yourbalance is: " + myBalance)
}
}
else{
console.log("Incorrect pin number");
}