Example: Without ng-app shows "SELECTED", with ng-app is empty. ``` html <!DOCTYPE html> <html ng-app> <head> <script src="http://code.angularjs.org/angular-1.0.0rc6.min.js"></script> </head> <body> <select><option></option><option value="1" selected>SELECTED</option></select> </body> </html> ```
Example: Without ng-app shows "SELECTED", with ng-app is empty.