Learn
If we want to both read and write a particular variable, there’s an even shorter shortcut than using attr_reader
and attr_writer
. We can use attr_accessor
to make a variable readable and writeable in one fell swoop.
Instructions
1.
Here we have an attr_reader
and an attr_writer
for :job
. Go ahead and replace these with an attr_accessor
!
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.