Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 562 Bytes

self_eval.md

File metadata and controls

9 lines (5 loc) · 562 Bytes

Self-Evaluation

Reflect on your learning and work today. What are you most proud of?

I am most proud of my ability to read and understand the ruby docs for the methods and their purposes. They do seem to make it easy though. I love the examples!

What is the power of using methods in our applications?

Methods allow you to generalize certain tasks so you don't have to type out the same few lines of code every time you need to do a particular task. You can change the inputs (arguments) whenever you need to call the method for different values.