#ruby
Read more stories on Hashnode
Articles with this tag
Build your own framework on RUBY! ยท Let's Start Rebuilding rails Why Rebuild Rails? Knowing the deepest level of any software lets us master that...
Today I am writing about ways to use Pry. Pry is IRB with incredible advantages. It let us research or investigate on the objects and classes we use....
Simply in Ruby or any other language, Strings is a sequence of one or more characters. It can consist of numbers, letters, or symbols. Let's learn to...
We use exceptions to handle unexpected failures inside a program. Exceptions are in the form of a program crash with an error message. In Ruby,...
Safe Navigation Operator (&.) &., is called "safe navigation operator", as it allows to skip method call when the receiver is nil. It returns nil and...
Case Equality (===) Also known as triple equals. Mainly in ruby, every time we go through this tripe equals, we think of comparing the value but as a...