AngularJS Directives
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> </head> <body> <div ng-app="" ng-init="colors=['Red','Green','Blue']"> <ul> <li ng-repeat="color in colors">{{ color }}</li> </ul> </div> </body> </html>