You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var a = [1,2];
print(a);
a.append(3);
print(a);
a.append(4,5,6); // you can also add multiple item at once
print(a);
a.pop(); // remove last object
print(a);
print(a.__length__()); // the count of items
The text was updated successfully, but these errors were encountered: