-
Notifications
You must be signed in to change notification settings - Fork 26
/
index5.js
104 lines (77 loc) · 1.77 KB
/
index5.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
93
94
95
96
97
98
99
100
101
102
103
104
// let const var
// 宣告
// function hello () {
// console.log('你好')
// }
// function hello2 () {
// console.log('你好2')
// }
// function hello3 () {
// console.log('你好3')
// }
// // 執行
// hello()
// hello2()
// hello3()
// function addMoney() {
// console.log(100 + 200 - 100)
// }
// // 結帳頁面
// addMoney()
// // 購物車頁面
// addMoney()
// 有參數的 function
// 接受傳入2個參數
function addMoney(price1, price2, discount) {
// console.log('price1', price1);
// console.log('price2', price2);
// console.log('discount', discount);
// console.log(price1 + price2 - discount)
}
// // 結帳頁面
// addMoney(2000, 100, 50)
// // // 購物車頁面
// addMoney(3000, 200, 100)
// 有回傳值的function (return)
// function addMoney(price1, price2, discount) {
// let result = price1 + price2 - discount
// let message = '普通會員'
// if (result >= 50000) {
// message = '尊榮會員'
// return message
// }
// if (result >= 20000) {
// message = '白金會員'
// return message
// }
// return message
// }
// let msg = addMoney(10000, 11000, 1000)
// console.log('msg', msg);
// const card = {
// name: "小明"
// }
// const card2 = {
// name: "小明2"
// }
// const card3 = {
// name: "小明3"
// }
// 構造函數 function
function createCard(initName) {
this.name = initName
}
// // new 建立或構造
// const a1 = new createCard('小明')
// const a2 = new createCard('小明2')
// const a3 = new createCard('小明3')
// const a4 = new createCard('小明4')
// const a5 = new createCard('小明5')
// console.log(a1);
// console.log(a2);
// console.log(a3);
// console.log(a4);
// console.log(a5);
function hello() {}
let hello = function () {}
let hello = () => {}