4 lines
64 B
CoffeeScript
4 lines
64 B
CoffeeScript
# like in JavaScript
|
|
a = [1, 2, 3]
|
|
b = [4, 5, 6]
|
|
c = a.concat b
|