You can replace the AngularJS version in your code with any of the following AngularJS CDN links:
The AngularJS online editor allows you to run your AngularJS code online without requiring a web server. You don't need to use a text editor on your computer to write AngularJS files.
This enables you to quickly and easily view the execution results of AngularJS. With the Ace editor, syntax errors or warnings can be automatically detected, and clear, interactive feedback is provided to help you improve code performance. You can write or paste AngularJS code like this:
<!doctype html>
<html ng-app>
<head>
<script src="https://cdn.staticfile.org/angular.js/1.8.0/angular.min.js">
</script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter your name">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>