...

/

Ruby is an Object-Oriented Language

Ruby is an Object-Oriented Language

Let’s explore Ruby's methods and objects.

We'll cover the following...

Everything we manipulate in Ruby is an object. The results of those manipulations are objects themselves.

When we write object-oriented code, we’re normally looking to model concepts from the real world. Typically during this modeling process, we discover categories of things that need to be represented. In an online store, the ...