Angularjs Examples

AJS Examples


What is module and how to create module in AngularJS

In this AngularJS basic example you will learn what is module and how to create module in AngularJS. A module is a container for different parts of application and created using angular object's module() method.

Here you can view the output of the example and you can also "try it yourself" by clicking on "Live Demo" button given at the bottom.

Syntax

var app = angular.module("moduleName",[]);

How to create module in AngularJS

<html>
<head>
<title>My first AngularJS code</title>
<Script SRC="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></Script>
<script> 
var app = angular.module("moduleName",[]); 
</script>
</head>
<body>
</body>
</html>