Guest User

Untitled

a guest
Oct 18th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function map(d) {
  2. if (d[4] == "." || d[2] == isNaN) {
  3. }
  4. if (d[0] === "2015") {
  5. return {
  6. yearOne: d[0],
  7. categorie: d[1],
  8. product: d[2],
  9. priceOne: Number(d[4])
  10. }
  11. }
  12. if (d[0] === "2016") {
  13. return {
  14. yearTwo: d[0],
  15. categorie: d[1],
  16. product: d[2],
  17. priceTwo: Number(d[4])
  18. }
  19. }
  20. }
  21.  
  22. 2015,Foodstuffs,Applesauce,euro,0.86
  23. 2015,Foodstuffs,Bananas,euro,1.48
  24. 2015,Foodstuffs,Beer,euro,1.48
  25. 2016,Foodstuffs,Applesauce,euro,0.84
  26. 2016,Foodstuffs,Bananas,euro,1.46
  27. 2016,Foodstuffs,Beer,euro,1.49
Add Comment
Please, Sign In to add comment