Skip to content

Instantly share code, notes, and snippets.

@agrajm
Last active August 29, 2015 14:26
Show Gist options
  • Save agrajm/6e52dc71396a2114cbec to your computer and use it in GitHub Desktop.
Save agrajm/6e52dc71396a2114cbec to your computer and use it in GitHub Desktop.
var app = angular.module("dependencyinjection", []);
app.controller('mainController', ['$scope', function($scope){
$scope.users = [{
name : "Tom",
age: 29
},{
name : "Harry",
age: 28
}];
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment