Script
script array clone
자바초보자
2015. 12. 11. 13:25
728x90
script array clone
Array.prototype.clone = function() {
return this.slice(0);
};
728x90