Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?

Which is an equivalent code to invoke a function m of class o that expects two arguments x and y? Correct Answer o.m(x,y);

The two argument in a function are separated by a comma (,). The code above is an invocation expressioit includes a function expression o.m and two argument expressions, x and y.

Related Questions

You can invoke class constructors that don’t have any relation to the instantiated object by simply prefacing _constructor with the class name like.
Which of the following statements invoke the exception class?
Which of the following commands is given to invoke Task Manager?
Which is the handler method used to invoke when uncaught JavaScript exceptions occur?