Skip to content
Advertisement

How to stop a method being called when accesing its attributes like return values

The question is the following: How to stop a method being called when its attributes are, in fact, return values, that are necessary in another method, of another class.

This is how the program was written:

JavaScript

Calling var1.m3() returns this result, which is repeating the function calls, because of the p and nattributes that are retrieved in the method m7() through this syntax:

JavaScript

It results in this effect:

JavaScript

Basically, S1().m5()[1] and S1().m5()[0] calls the functions, but I wanted to retrieve the values p and n from the tuple returned by m5().

The methods are interspersed and I am having some difficulty understanding why is this happening and how to avoid this type of repetions when using class attributes.

Thanks to all!

Advertisement

Answer

Why not do it like this:

JavaScript

I hope I didn’t mix up p and n, but the general gist should come accross..

Advertisement