README
Finds product of numbers (∏). :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
This is part of package extra-math.
math.product(...n);
// n: a list of numbers
const math = require("extra-math");
math.product(1, 2);
// 2
math.product(1, 2, 3);
// 6
math.product(1, 2, 3, 4);
// 24