If I want to declare three new arrays (a1, a2, a3), I can do this:
a1=[]
a2=[]
a3=[]
But now I want to do it all on one line, like
a1, a2, a3 = []
but this fails. How can I assign them all to an empty array on one line?
|
If I want to declare three new arrays (
But now I want to do it all on one line, like
but this fails. How can I assign them all to an empty array on one line? |
||||
|
|
|
To do something similar to your second example, you would still need to create three arrays:
|
|||||||||
|
|
Ruby Multiple assignment is unexpected in below situations:
Above code will not assign blank array in any array variable. use,
You need to provide number of values as number of variable are used to initialize. |
|||
|
|
|
If you insist on not repeating the
Another way is:
|
||||
|
|