Skip to content
Advertisement

I have a while loop and I want to call the variable multiple times is it possible?

An example of this would be

JavaScript

User enters macaroni the first time sausage the second time and cheese the third time.

Is there anyway that I could have store/save the first two times the user enters the input? Or would I have to use something else?

Advertisement

Answer

You can use array list to store all user inputs and use them later with something like this:

JavaScript

Full implementation, tested and working

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