Here's an easy one straight from the text book I can't seem to find.
I have a javascript function. I want it to contain a private variable which remembers its value between invocations.
Can someone jog my memory please.
|
Here's an easy one straight from the text book I can't seem to find. I have a javascript function. I want it to contain a private variable which remembers its value between invocations. Can someone jog my memory please. |
|||
|
|
|
Create it using a closure:
Then use it as follows:
|
|||||
|
Displays 10 then 25. |
|||||||
|
|
I am not sure if I understood correctly but maybe something like this would do the trick :
|
|||
|
|
|
Here is a truly private implementation
Cheers |
|||||||||
|