Say you have a variable:
var x = [1,2]
If it is a mutable object, you could do:
x.append(3) x >> [1,2,3]