Created
September 20, 2015 11:59
-
-
Save chuck0523/6e184990bd13fcad1502 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var log = function log(x) { | |
console.log(x); | |
}; | |
var ary = [10, 23, 4, 0, 77]; | |
var c = ary.copyWithin(0, 2); // [4, 0, 77, 0, 77] | |
var ary = [10, 23, 4, 0, 77]; | |
var d = ary.copyWithin(0, 2, 3); // [4, 23, 4, 0, 77] | |
var ary = [10, 23, 4, 0, 77]; | |
var e = ary.copyWithin(-1, 2, 3); // [10, 23, 4, 0, 4] | |
log(e); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment