I see this syntax of links in AngularJS applications:
<a href="/#/something">something</a>
Why is there the '/#/' in the link, and what does it achieve? I think I might have also seen a version with a bang in it, something like
<a href="/!#/login">
or
<a href="/#!/login">
What is the purpose of the !
?
Thank you!