Given an object with a greet method, use .bind() to create boundGreet — a function that always uses that object as this, even when detached from the object or attached to another one.
greet
.bind()
boundGreet
this
Click Run to test your code