I noticed the following code recently in an Angular tutorial...
<div ng-app="myApp" ng-controller="formCtrl">
<form novalidate>
First Name:<br>
<input type="text" ng-model="user.firstName"><br>
Last Name:<br>
<input type="text" ng-model="user.lastName">
<br><br>
<button ng-click="reset()">RESET</button>
</form>
<p>form = {{user}}</p>
<p>master = {{master}}</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.master = {firstName: "John", lastName: "Doe"};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
});
</script>
With respect to the line: $scope.user = angular.copy($scope.master);, could this not have been simplified to: $scope.user = $scope.master; seeing that $scope.master is going to be an immutable constant in this case?
$scope.user = $scope.masterdo the same thing, and if not, what would this statement do in comparison to theangular.copy()version?