mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
Add #push to Array besides shovel operator
#push is commonly used imho and it is also used in other languages (e.g. Javascript).
This commit is contained in:
parent
aca299f451
commit
c00ac0de66
@ -173,6 +173,8 @@ array[1..3] #=> [2, 3, 4]
|
|||||||
|
|
||||||
# Add to an array like this
|
# Add to an array like this
|
||||||
array << 6 #=> [1, 2, 3, 4, 5, 6]
|
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
|
# Check if an item exists in an array
|
||||||
array.include?(1) #=> true
|
array.include?(1) #=> true
|
||||||
|
Loading…
Reference in New Issue
Block a user