Merge pull request #1212 from arthur-vieira/patch-1

Add #push to Array besides shovel operator
This commit is contained in:
Levi Bostian 2015-08-26 21:14:57 -05:00
commit 96ad94ad86

View File

@ -173,6 +173,8 @@ array[1..3] #=> [2, 3, 4]
# Add to an array like this
array << 6 #=> [1, 2, 3, 4, 5, 6]
# Or like this
array.push(6) #=> [1, 2, 3, 4, 5, 6]
# Check if an item exists in an array
array.include?(1) #=> true