Spread
Examples
doSomething([1, 2, 3]...)
// equivalent to doSomething(1, 2, 3)
[[1, 2, 3]..., 4, 5, 6]
// resolves to [1, 2, 3, 4, 5, 6]
{ {"firstName": "Tom"}..., "lastName": "Wright" }
// resolves to { "firstName": "Tom", "lastName": "Wright" }
[1, 2, 3]...
// 1
// 2
// 3Last updated