diff options
author | Geoff Liu <g@geoffliu.me> | 2015-08-28 11:50:04 -0600 |
---|---|---|
committer | Geoff Liu <g@geoffliu.me> | 2015-08-28 11:50:04 -0600 |
commit | f4ab326784f571e3bb532f5f60a87fc1aea47552 (patch) | |
tree | bb5082a3b2ebdf295af1cd144241c124c517f460 /ruby.html.markdown | |
parent | 97b97408eab97fbe322df4266cda9ab2ed21fceb (diff) | |
parent | 96ad94ad867a6226cd90db5c2ff764eb930c6ad6 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r-- | ruby.html.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index 66a0774d..7bd28d86 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -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 |