I'm new to angular.js. Below is my first working app. The second text area displays the text typed in the first area. What's the proper way and how to make it work this way: the text result is almost the same as in the source, but letters "a" are replaced with "0".
<!DOCTYPE html>
<html data-ng-app="">
<head>
<script src="angular1.2.12.js"/>
<script>
</script>
</head>
<body>
<textarea data-ng-model="source"></textarea>
<textarea id="result">{{source}}</textarea>
</body>
</html>
Here is a jsFiddle.