Skip to content

Instantly share code, notes, and snippets.

@agrajm
Created August 8, 2015 12:32
Show Gist options
  • Save agrajm/6279a92f3d41bc6bbcbf to your computer and use it in GitHub Desktop.
Save agrajm/6279a92f3d41bc6bbcbf to your computer and use it in GitHub Desktop.
Example of a Standard Angular Controller
var app = angular.module("dependencyinjection", []);
app.controller('mainController', 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