Let\'s say I have an array with data elements, in this example numbers, like this:
var a = [432, 238, 122, 883, 983];
And I want to limit t
a=add(188); function add(x){ a.push(x); return a.slice(1); }