Products Array

ecma/array/products/code/products.mjs:

function total(products) {
  // TODO
}

export { total };

ecma/array/products/code/products.print.mjs:

import { total } from './products.mjs';

// Cart Tool

const products = [['Bicicleta', 1200.0], ['Capacete', 450.0]];

// counting total cart
console.log(total(products));
console.log(1650.0);

Response

Tips:
Use map or reduce