1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 21:49:22 +01:00

Merge pull request #3253 from kaymmm/fix3042

[ruby/en] fixes #3042 (spring cleanup)
This commit is contained in:
Divay Prakash 2018-10-04 22:00:09 +05:30 committed by GitHub
commit e867dfd7b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ contributors:
- ["Jake Faris", "https://github.com/farisj"]
- ["Corey Ward", "https://github.com/coreyward"]
- ["Jannik Siebert", "https://github.com/janniks"]
- ["Keith Miyake", "https://github.com/kaymmm"]
---
```ruby
@ -83,9 +84,9 @@ false.class #=> FalseClass
# Combined comparison operator (returns `1` when the first argument is greater,
# `-1` when the second argument is greater, and `0` otherwise)
1 <=> 10 #=> -1
10 <=> 1 #=> 1
1 <=> 1 #=> 0
1 <=> 10 #=> -1 (1 < 10)
10 <=> 1 #=> 1 (10 > 1)
1 <=> 1 #=> 0 (1 == 1)
# Logical operators
true && false #=> false
@ -188,8 +189,11 @@ array[2, 3] #=> [3, 4, 5]
array[1..3] #=> [2, 3, 4]
# You can reverse an Array.
# Return a new array with reversed values
[1,2,3].reverse #=> [3,2,1]
# Reverse an array in place to update variable with reversed values
a = [1,2,3]
a.reverse! #=> [3,2,1]
a.reverse! #=> a==[3,2,1] because of the bang ('!') call to reverse
# Like arithmetic, [var] access is just syntactic sugar
# for calling a method '[]' on an object.