Skip to content

Instantly share code, notes, and snippets.

@sajeetharan
Created January 27, 2017 17:41
Show Gist options
  • Save sajeetharan/2706edc52da6e14f9bd727ac1c526e16 to your computer and use it in GitHub Desktop.
Save sajeetharan/2706edc52da6e14f9bd727ac1c526e16 to your computer and use it in GitHub Desktop.
////Angular 1.x using Controller and $scope.........
var myApp = angular
.module("myModule", [])
.controller("productController", function($scope) {
var prods = { name: "Prod1", quantity: 1 };
$scope.products = prods;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment