https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-8-largest-product-in-a-series (more efficient to try: use a pointer variable to keep track of where you are in the array while looping over it instead of using a nested for loop) function largestProductinaSeries(n) { // Good luck! let thousandDigits = [ 7 , 3 , 1 , 6 , 7 , 1 , 7 , 6 , 5 , 3 , 1 , 3 , 3 , 0 , 6 , 2 , 4 , 9 , 1 , 9 , 2 , 2 , 5 , 1 , 1 , 9 , 6 , 7 , 4 , 4 , 2 , 6 , 5 , 7 , 4 , 7 , 4 , 2 , 3 , 5 , 5 , 3 , 4 , 9 , 1 , 9 , 4 , 9 , 3 , 4 , 9 , 6 , 9 , 8 , 3 , 5 , 2 , 0 , 3 , 1 , 2 , 7 , 7 , 4 , 5 , 0 , 6 , 3 , 2 , 6 , 2 , 3 , 9 , 5 , 7 , 8 , 3 , 1 , 8 , 0 , 1 , 6 , 9 , 8 , 4 , 8 , 0 , 1 , 8 , 6 , 9 , 4 , 7 , 8 , 8 , 5 , 1 , 8 , 4 , 3 , 8 , 5 , 8 , 6 , 1 , 5 , 6 , 0 , 7 , 8 , 9 , 1 , 1 , 2 , 9 , 4 , 9 , 4 , 9 , 5 , 4 , 5 , 9 , 5 , 0 , 1 , 7 , 3 , 7 , 9 , 5 , 8 , 3 , 3 , 1 , 9 , 5 , 2 , 8 , 5 , 3 , 2 , 0 , 8 , 8 , 0 , 5 , 5 , 1 , 1 , 1 , 2 , 5 , 4 , 0 , 6 , 9 , 8 , 7 , 4 , 7 , 1 , 5 , 8 , 5 ,...