One of the main points of this multi-processing class was to become acclimated to the use of web workers to improve the execution speed of particular actions.One example we used was program that used two workers to add a group of numbers. In principle, the workers were to take turns accessing the numbers and keeping separate totals to be added together in the end.
Another example used was a Pi calculator using multiple web workers. The purpose here was to observe how quickly multiple web workers could perform the calculation.
The results show that while workers perform the calculations relatively quickly, the addition of more workers increases the time it takes for all workers to complete their tasks.