Skip to content
Advertisement

call variable in method within the same class

In this example code:

JavaScript

is there a way to call the average and total variables in the math method without putting it in the return function (I want the math function to only return the length of the list)? I tried this:

JavaScript

but this gives an error. I want to be able to call the variables in one line. Any suggestions?

Advertisement

Answer

You can put them in instance attributes.

JavaScript

BTW, don’t use list as a variable name, it replaces the built-in function with that name.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement