Mass Assignment Lab
Mass Assignment
Objectives
Instructions
:name, :birthday, :hair_color, :eye_color, :height,
:weight, :handed, :complexion, :t_shirt_size,
:wrist_size, :glove_size, :pant_length, :pant_widthbob_attributes = {name: "Bob", hair_color: "Brown"}
bob = Person.new(bob_attributes)
bob.name # => "Bob"
bob.hair_color # => "Brown"
susan_attributes = {name: "Susan", height: "5'11\"", eye_color: "Green"}
susan = Person.new(susan_attributes)
susan.name # => "Susan"
susan.height # => "5'11""
susan.eye_color # => "Green"Last updated