Total Cart Price: Exercise
Write a point-free function to calculate a shopping cart’s total price in dollars.
Calculate a shopping cart’s total price in dollars.
Usage
const price = getTotalPrice(cart); // '$44.20'
Your solution must be point-free.
index.js
cart.js
import {} from 'ramda';import cart from './cart';const getTotalPrice = () => {};