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,151 questions

40,705 answers

573 users

How to initialize variables in AngularJS

Booking.com | Official site | The best hotels, flights, car rentals & accommodations


239 views
asked May 15, 2017 by avibootz
edited May 16, 2017 by avibootz

4 Answers

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="" ng-init="website='collectivesolver.com'">

<p>The website is: <span ng-bind="website"></span></p>

</div>

</body>
</html>

<!-- 
run: 

The website is: collectivesolver.com

-->

 





answered May 15, 2017 by avibootz
edited May 17, 2017 by avibootz
0 votes
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div data-ng-app="" data-ng-init="website='seek4info.com'">

<p>The website is: <span data-ng-bind="website"></span></p>

</div>

</body>
</html>

<!-- 
run: 

The website is: seek4info.com

-->

 





answered May 15, 2017 by avibootz
edited May 17, 2017 by avibootz
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="" ng-init="x=13;y=2">
<p>x * y = {{ x * y }}</p>
</div>

</body>
</html>

<!--
x * y = 26
-->

 





answered May 17, 2017 by avibootz
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="" ng-init="firstName='Emma ';lastName='Polinar'">

<p>Name: {{ firstName + " " + lastName }}</p>

</div> 

</body>
</html>

<!-- 
run: 

Name: Emma Polinar

-->

 





answered May 17, 2017 by avibootz

Related questions

...