(array1, array2)
| 9 | |
| 10 | // * 2. spreadItOut |
| 11 | const spreadItOut = (array1, array2) => { |
| 12 | return [...array1, ...array2]; |
| 13 | }; |
| 14 | |
| 15 | // * 3. breakDownObj |
| 16 | const breakDownObj = (obj) => { |
nothing calls this directly
no outgoing calls
no test coverage detected