Read the frickin’ docs

Going through an array and applying a code block is a staple of programming, so I’m particularly interested in today’s post on enumerable methods. #each One of the more commonly used methods, this, as you can probably guess, applies a given block through all of the items before returning the Array itself. The return is […]