We're a place where coders share, stay up-to-date and grow their careers.
I would have though the shortest version of (1) would be:
let rotate = (arr,n) => (arr.unshift(...arr.splice(-n % arr.length, n % arr.length)), arr)
Though I guess the splice allocates an array of size n % length
I would have though the shortest version of (1) would be:
Though I guess the splice allocates an array of size n % length