Q. Which is the correct code that returns a complex number that is the complex conjugate of this one?
β
Correct Answer: (A)
Complex.prototype.conj = function() { return new Complex(this.r, -this.i); };