Can I store multiple values in a single variable in Ruby?

Yes, you can. Ruby offers a data structure called Array using which you can store multiple values in a single element. Let’s look at an example.

Variable with single assigned value:

user_limit = 250

Variable with multiple assigned values:

users = [‘john’, ‘kevin’, ‘jay’, ‘navin’]

This is an array, and you can store more than one value in an array like this.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.