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
constarr1=['a','b','c','d'];constarr2=['a','b','c','d'];// Move first item to last index - output should be ['b', 'c', 'd', 'a']arr1.push(arr1.shift());// Move last item to first index - output should be ['d', 'a', 'b', 'c']arr2.unshift(arr2.pop());