forked from engindemirog/javaScriptStarterKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapFilterReduce.js
More file actions
74 lines (55 loc) · 1.91 KB
/
mapFilterReduce.js
File metadata and controls
74 lines (55 loc) · 1.91 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
let cart = [
<<<<<<< HEAD
{id:1,productName:"Telefon",quantity:3, unitPrice:4000},
{id:2,productName:"Bardak",quantity:2, unitPrice:30},
{id:3,productName:"Kalem",quantity:1, unitPrice:20},
{id:4,productName:"Şarj Cihazı",quantity:2, unitPrice:100},
{id:5,productName:"Kitap",quantity:3, unitPrice:30},
{id:6,productName:"Pot",quantity:5, unitPrice:150},
=======
{id:1, productName:"Telefon", quantity:3, unitPrice:4000},
{id:2, productName:"Bardak", quantity:2, unitPrice:30},
{id:3, productName:"Kalem", quantity:1, unitPrice:20},
{id:4, productName:"Şarj Cihazı", quantity:2, unitPrice:100},
{id:5, productName:"Kitap", quantity:3, unitPrice:30},
{id:6, productName:"Pot", quantity:5, unitPrice:150},
>>>>>>> 356709dd1c8d89a8fd8b4505618f36d28c557a25
]
console.log("<ul>")
cart.map(product=>{
<<<<<<< HEAD
console.log("<li>" + product.productName + " : " + product.unitPrice*product.quantity +"</li>")
})
console.log("</ul>")
let quantityOver2 = cart.filter(product=>product.quantity>2)
console.log(quantityOver2)
let total = cart.reduce((acc,product)=>acc+product.unitPrice,0)
console.log(total);
function addToCart(sepet) {
sepet.push({id:7,productName:"Ruhsat",quantity:5,unitPrice:500})
}
addToCart(cart);
console.log(cart);
=======
console.log("<li>"+product.productName + " : "
+ product.unitPrice * product.quantity+"</li>")
})
console.log("</ul>")
let total = cart.reduce((acc,product)=>acc+ product.unitPrice * product.quantity,0)
//23.00 Dersteyiz
console.log(total)
let quantityOver2 = cart.filter(product=>product.quantity>2)
console.log(quantityOver2)
function addToCart(sepet) {
sepet.push({id:7, productName:"Ruhsat", quantity:1, unitPrice:20})
}
addToCart(cart)
console.log(cart)
let sayi = 10
function sayiTopla(number) {
number += 1
}
sayiTopla(sayi)
console.log(sayi)
//23.00 Dersteyiz
>>>>>>> 356709dd1c8d89a8fd8b4505618f36d28c557a25