Skip to content

Instantly share code, notes, and snippets.

@Bodacious
Created November 16, 2011 09:22
Show Gist options
  • Save Bodacious/1369666 to your computer and use it in GitHub Desktop.
Save Bodacious/1369666 to your computer and use it in GitHub Desktop.
Enumerable inject
string = ["b", "c", "d"].inject("a") { |result, element| result + element }
puts string
@Bodacious
Copy link
Author

# => "abcd"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment