Flatten nested arrays of integers

Write some code, that will flatten an array of arbitrarily nested arrays of integers into a flat array of integers.

example:

flatten([[1, 2, [3]], 4]);
// [1, 2, 3, 4]


Share Comments