Breaking Down The Steamroller Algorithm Problem From FreeCodeCamp.org — Goal We’re going to examine the problem of trying to flattening arrays in JavaScript or the act of making a multidimensional array into a single dimensional array: [1, [2], [3, [4]]] -> [1, 2, 3, 4] Real World Use In most cases I see this as a formatting issue or you need to get…