-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap
More file actions
30 lines (28 loc) · 910 Bytes
/
Copy pathmap
File metadata and controls
30 lines (28 loc) · 910 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
/*
* Programming Quiz: I Got Bills (6-9)
*
* Use the .map() method to take the bills array below and create a second array
* of numbers called totals. The totals array should contains each amount from the
* bills array but with a 15% tip added. Log the totals array to the console.
*
* For example, the first two entries in the totals array would be:
*
* [57.76, 21.99, ... ]
*
* Things to note:
* - each entry in the totals array must be a number
* - each number must have an accuracy of two decimal points
*/
var bills = [50.23, 19.12, 34.01,
100.11, 12.15, 9.90, 29.11, 12.99,
10.00, 99.22, 102.20, 100.10, 6.77, 2.22
];
var totals = bills.map(
function(elementPrice)
{
elementPrice += (0.15 * elementPrice);
elementPrice = elementPrice.toFixed(2);
elementPrice = Number(elementPrice);
return elementPrice;
});
console.log(totals);