Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (function () {
  2. //Module
  3. var app = angular.module('MyApp', []);
  4. // Controller
  5. app.controller('MyController', function ($scope) {
  6. $scope.Message = "Congratulation you have created your first application using AngularJs";
  7. });
  8. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement