Home
Ruby
ActiveRecord
Array
CGI
Class
Collections
Database
Date
Design Patterns
Development
File Directory
GUI
Hash
Language Basics
Method
Network
Number
Rails
Range
Reflection
Statement
String
Threads
Time
Tk
Unit Test
Windows Platform
XML
Menu
Sum of word lengths : inject « Array « Ruby
Ruby
Array
inject
Sum of word lengths
%w[pea queue are].inject(0) {|total, word| total + word.length } # => 11
Related examples in the same category
1.
Sum an array with inject
2.
Building Up a Hash Using Injection