Older Than Me

Published by Cuurjol in

Create a method in the Person class which returns how another person's age compares. Given the objects p1, p2 and p3, which will be initialised with the attributes name and age, return a sentence in the following format:

{other_person} is {older than / younger than / the same age as} me.

Examples

p1 = Person.new("Samuel", 24)
p2 = Person.new("Joel", 36)
p3 = Person.new("Lily", 24)
p1.compare_age(p2) ➞ "Joel is older than me."

p2.compare_age(p1) ➞ "Samuel is younger than me."

p1.compare_age(p3) ➞ "Lily is the same age as me."

Notes

  • Check out the Resources tab for some helpful tutorials on Ruby classes!
  • If you're really stuck, check out the Solutions tab for answers.
Watch a quick demo on how Edabit works.