Currently, I am in the process of learning AngularJS. To practice, I attempted a simple code snippet in an HTML file:
<!DOCTYPE html>
<html lang="en" ng-app="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title Page</title>
<link rel="stylesheet" href="bootstrap.min.css" >
</head>
<body>
<input type="text" ng-model="name">
<div>hello{(name)}</div>
<!-- jQuery -->
<script src="https://cdnjs.com/libraries/angular.js/"></script>
</body>
</html>
However, when I checked this code on my web browser, it did not work as expected and displayed an error message in the console:
Uncaught ReferenceError: System is not defined on line 2
I'm puzzled by this error. Can someone shed some light on why I'm encountering this issue?