Skip to content

Instantly share code, notes, and snippets.

View ambergkim's full-sized avatar

Amber Kim ambergkim

View GitHub Profile
// Bonfire: Chunky Monkey
// Author: @amgranad
// Challenge: http://www.freecodecamp.com/challenges/bonfire-chunky-monkey?solution=function%20chunk(arr%2C%20size)%20%7B%0A%20%20originalLength%20%3D%20arr.length%3B%0A%20%20newArray%20%3D%20%5B%5D%3B%0A%20%20%0A%20%20for(i%3D0%3B%20originalLength%2Fsize%3Ei%3B%20i%2B%2B)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20smallArray%20%3D%20%5B%5D%3B%0A%20%20%20%20%20%20for(j%3D0%3B%20size%3Ej%3B%20j%2B%2B)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20smallArray.push(arr%5Bj%5D)%3B%0A%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20if(arr.length%3Csize%20%26%26%20arr.length%3E%200)%7B%0A%20%20%20%20%20%20newArray.push(arr)%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20arr.splice(0%2C%20size)%3B%0A%20%20%20%20%20%20newArray.push(smallArray)%3B%0A%0A%20%20%20%20%20%20%7D%0A%0A%20%20%20%20%7D%0A%20%20%0A%20%20return%20newArray%3B%0A%7D%0A%0Achunk(%5B%22a%22%2C%20%22b%2