Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conditional Operators #3

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ end
Eat


### Conditional Operators : == , >= ,<= ,!=, !
### Conditional Operators : == , ===, >= ,<= ,!=, !



Expand All @@ -473,11 +473,20 @@ end




false



```ruby
Integer === 21
```



true




```ruby
5*4 == 4*5
Expand Down Expand Up @@ -779,13 +788,13 @@ Arrays are continuous data structures
```ruby
a = []
a[45] = 5
puts a
p a
```

[nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, 5]


a[45] = 0, created 45 empty spaces and then added 5 at 45th index. Indexing starts from zero.
a[45] = 5, created 45 empty spaces and then added 5 at 45th index. Indexing starts from zero.


```ruby
Expand Down Expand Up @@ -1092,7 +1101,7 @@ puts join_words ["Ruby","is","flexible"]
Ruby is flexible


What is you want to pass a variable number of arguments and you don't want to pass an array.
What if you want to pass a variable number of arguments and you don't want to pass an array.

Voila, we have *args arguement.

Expand Down