Skip to content

Instantly share code, notes, and snippets.

@bennadel
Created November 11, 2014 13:40
When To Use $scope vs. scope In AngularJS
function link( $scope, element, attributes ) {
// ... with "$"
}
function link( scope, element, attributes ) {
// ... without "$"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment