Reputation: 1
I have problem with Angular that it always said the variable angular was not defined even though I have included it in the html tagsmy code my code
Upvotes: 0
Views: 38
Reputation: 2412
You have a typo in your <script>
tag where you load AngularJs:
<srcipt></srcipt>
---> <script></script>
Upvotes: 1