I am brand new to AngularJS and like what I\'ve seen so far, especially the model / view binding. I\'d like to make use of that to construct a simple \"add
You could use ng-init in an outer div:
param: {{value}}
The parameter will then be available in your controller's scope:
function BasketController($scope) { console.log($scope.param); }