标签: arrays angularjs deep-copy
在angularjs中,当我需要深度复制数组时,哪个更好:
var newArray = angular.copy(oldArray);
和
var newArray = oldArray.slice();