Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

How to use expressions in AngularJS

Learn & Practice SQL


145 views
asked May 16, 2017 by avibootz
edited May 16, 2017 by avibootz

1 Answer

0 votes
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="">
<p>expression a: {{ 3 + 9 }}</p>
<p>expression b: {{ 3 * 9 }}</p>
<p>expression c: {{ 9 / 3 }}</p>
<p>expression d: {{ 9 - 3 }}</p>
</div>

</body>
</html>

<!--
run:

expression a: 12

expression b: 27

expression c: 3

expression d: 6

-->

 





answered May 16, 2017 by avibootz

Related questions

1 answer 158 views
1 answer 155 views
1 answer 153 views
2 answers 204 views
...