Simple AngularJS 1
Simple AngularJS with model and output
HTML
<div data-ng-app="myApp">
<div data-ng-controller="myController">
<input type="text" placeholder="Enter Name" data-ng-model="name" />
<h4>{{name}}</h4>
</div>
</div>
JavaScript
var app = angular.module("myApp", []);
app.controller("myController", function ($scope) {});