-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCardQuantity.html
More file actions
49 lines (49 loc) · 1.02 KB
/
Copy pathCardQuantity.html
File metadata and controls
49 lines (49 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cart Quantity</title>
</head>
<body>
<button onclick="console.log(`Cart Quantity: ${quantity}`)">
Show Quantity
</button>
<button
onclick="
quantity++;
console.log(`Cart Quantity: ${quantity}`);
"
>
Add to Cart
</button>
<button
onclick="
quantity = quantity + 2;
console.log(`Cart Quantity: ${quantity}`);
"
>
+2
</button>
<button
onclick="
quantity = quantity + 3;
console.log(`Cart Quantity: ${quantity}`);
"
>
+3
</button>
<button
onclick="
console.log('Cart was reset');
quantity = 0;
console.log(`Cart Quantity: ${quantity}`);
"
>
Reset Cart
</button>
<script>
let quantity = 0;
</script>
</body>
</html>