Ng-Bind-7

 

We have an array with some random numbers and we bind the 6th element like ng-bind="Array[5]" of the array i.e 600 to the span element, Thus the output is 600.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script> </head> <body ng-app="myApp"> <div ng-controller="myController"> <span ng-bind="Array[5]"></span> <br /> </div> <script> var app = angular.module("myApp", []); app.controller('myController', ['$scope', function ($scope) { $scope.Array = [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200]; }]); </script> </body> </html>
Output