Angular.js is the most popular web framework around! Demysify the complexity of this puzzling library in 10 minutes, and become a front end pro.
Code:
angular.module("myApp",[])
.run(function(myService){
console.log("hello from my app!")
myService.sayHello();
})
.controller("myController", function($scope,myService){
$scope.note = "THIS TUTORIAL IS OVER 90000000!"
myService.sayHello();
})
.service('myService',function(){
this.sayHello = function(){console.warn("HELLO!!!!")};
})
.directive("winter",function(myService){
return {
template:"I had a dream of Spring"
}
})