I'm currently diving into Angular with the help of Plural Sight. The initial lesson dives into utilizing the ng-app directive.
For those interested, here's a direct link to the Plunker editor: http://plnkr.co/edit/HIDCS8A9CR1jnAIDR0Zb?p=preview
<!DOCTYPE html>
<html>
<head>
<script data-require="angular.js@*" data-semver="2.0.0"
src="https://code.angularjs.org/2.0.0-snapshot/angular2.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body ng-app>
<h1>Hello Plunker!</h1>
{{ 843 /42 }}
</body>
</html>
The example in the lesson showcases how angular renders the quotient on a webpage using the expression {{ 843 / 42 }}.
Despite trying multiple times, I can't seem to get it right and don't understand why it's only displaying as text.
This marks my debut post on stackoverflow, thrilled to be part of this community!
Thank you, Shamus