Benchmark from lazutkin.com, the companion to Duff's device, part 2: copying within an array, which follows Duff's device in JavaScript.
The first post copied one array into another; its benchmark is in
a separate gist.
This one copies a range within one array, which is Array#copyWithin's
domain, so the built-in and the hand-written loops race on equal terms.
