기능 : 객체복사
이유 : 복사한 객체를 유지하거나 또는 일부 값을 변 환하기 위함
ex)
var fruit = {
item: [ "banana", "apple", "strawberry"],
getItem: function() {
return this.item;
}
};
var like = angular.copy(fruit);
like.item = [ "html", "css", "js" ];
참고 :
stackoverflow slider 질문글 :
https://stackoverflow.com/questions/56439065/angularjs-slick-is-not-working-even-after-including-all-necessary-scripts-in-pro