If you have a function f and an object o, you can define a method named m of o with
If you have a function f and an object o, you can define a method named m of o with Correct Answer o.m=m.f;
A method is nothing more than a JavaScript function that is stored in a property of an object. If you have a function f and an object o, you can define a method named m of o with the following line:o.m = f;