Created
August 6, 2015 14:35
-
-
Save fwon/db737aa07234e1ba6794 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var n = 2; | |
var arr = [1,2,3,4,5,6]; | |
var arr1 = arr.slice(0,n); | |
var arr2 = arr.slice(n,6) | |
arr1 = arr1.reverse(); | |
arr2 = arr2.reverse(); | |
var arr3 = arr1.concat(arr2).reverse(); | |
console.log(arr3); // [3,4,5,6,1,2] 字符串左移两位 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment