Course · Section 10: A Closer Look at Functions · Lecture 140: The call and apply Methods
Given a standalone `greet` function that uses `this.name`, implement `greetWith(person, greeting)` that invokes it on `person` using `call`, returning `greeting`, a comma, and the name.
+ 1 hidden test run on Submit.
call invokes the function with this bound to person and the greeting passed as the first argument.
Run your code to see results.