Write a constructor function called RunningProduct that has a single method called multiply and a single data property called product initialized to 1. multiply should take one argument and change product to be the product of product and the argument. Use a prototype object as appropriate.

javascript programming
exercise: methods 09