xiaoang
Results
2
comments of
xiaoang
function stackWheel(arr , len){ return arr.splice(-len,len).concat(arr); }
"aBcdEfg".replace(/\w/g,function(item){return item === item.toUpperCase() ? item.toLowerCase() : item.toUpperCase() })