Title:
JavaScript Methods Worksheet
Updated:
November 10, 2023
Task/Activity:
  1. Questions
  2. Coding Problems
A. Questions
  1. How is a method different from a regular function in JavaScript?
A method is different because it is part of an object, and in order to use that method, you must use a declared instant of that object.
  1. Why would we want to add methods to an object?
So that we save time with typing code and keep relevant methods with the appropriate objects.
  1. How can we access the property of an object from inside the body of a method of that object?
Using the 'this' command.
B. Coding Problems

Coding Problems - See the 'script' tag below this h3 tag. You will have to write some JavaScript code in it.

Always test your work! Check the console log to make sure there are no errors.