Set 72 Practical Question

⭐ Q22 – AngularJS: Display “AngularJS” in Text + Textbox

Example Code (Read Only):


<!DOCTYPE html>
<html ng-app="">
<head>
<title>Angular Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
</head>
<body>
<h2>{{"AngularJS"}}</h2>
<input type="text" value="AngularJS">
</body>
</html>

Write Your HTML / JavaScript Code