Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created May 7, 2017 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenafaure/02577e409085aac00312c857f462d09a to your computer and use it in GitHub Desktop.
Save lenafaure/02577e409085aac00312c857f462d09a to your computer and use it in GitHub Desktop.
var customer2 = {
firstName: "Jane",
lastName: "Smith"
}
customer.calculateAge.call(customer2, 2016, 1984); // Prints "Jane is 32 years old"
customer.calculateAge.apply(customer2, [2016, 1984]); // Prints "Jane is 32 years old"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment