Array.fillwith()
Array.fillwith(Numbers)
- Fill the array with numbers provided.
- Repeat the numbers if fewer than size specified.
|3|.fillwith(1..10)
1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | 9 |
|2x3|.fillwith(#a..z)
a | b | c |
d | e | f |
|3|.fillwith(1..10)
1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | 9 |
|2x3|.fillwith(#a..z)
a | b | c |
d | e | f |