Fullname and Email

Published by Cuurjol in

Create the instance methods fullname and email in the Employee class. Given a person's first and last names:

  • Form the fullname by simply joining the first and last name together, separated by a space.
  • Form the email by joining the first and last name together with a . in between, and follow it with @company.com at the end. Make sure the entire email is in lowercase.

Examples

emp_1 = Employee.new("John", "Smith")
emp_2 = Employee.new("Mary",  "Sue")
emp_3 = Employee.new("Antony", "Walker")
emp_1.fullname ➞ "John Smith"

emp_2.email ➞ "mary.sue@company.com"

emp_3.firstname ➞ "Antony"

Notes

  • The attributes firstname and lastname are already made for you.
  • See the Resources tab for some helpful tutorials on Ruby classes!
Watch a quick demo on how Edabit works.