<!DOCTYPE html>
<html ng-app="">
<head>
<script data-require="angular.js@1.3.11" data-semver="1.3.11" src="https://code.angularjs.org/1.3.11/angular.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<h1>AngularJS: ng-init and ng-bind</h1>
<div ng-app="" ng-init="firstName='John'; theNumber=7">
<p>The name is <span ng-bind="firstName"></span>.</p>
<p>The number is <span ng-bind="theNumber"></span>.</p>
</div>
</body>
</html>
// Code goes here
/* Styles go here */
# AngularJS: ng-init and ng-bind
You can initialize multiple variables with one ng-init.
toenails = ng-module(x, function() {
}
);