Skip to content

Instantly share code, notes, and snippets.

@umurkontaci
Created January 16, 2013 22:25
Show Gist options
  • Save umurkontaci/4551534 to your computer and use it in GitHub Desktop.
Save umurkontaci/4551534 to your computer and use it in GitHub Desktop.
$scope.father = {
name: "John",
children: []
};
var child = {
name: "Mary",
father: $scope.father
};
$scope.father.children.push(child);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment