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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,777 questions

55,543 answers

573 users

How to define and use strings in AngularJS

2 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="str1='abc';str2='xyz'">

<p>The strings: {{ str1 + ", " + str2 }}</p>

</div> 

</body>
</html>

<!-- 
run: 

The strings: abc, xyz

-->

 



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="str1='abc';str2='xyz'">

<p>The strings: <span ng-bind="str1 + ' ' + str2"></span></p>
 
</div> 
 
</body>
</html>
 
<!-- 
run: 
 
The strings: abc, xyz
 
-->

 



answered May 18, 2017 by avibootz

Related questions

2 answers 419 views
2 answers 467 views
1 answer 436 views
1 answer 417 views
1 answer 345 views
1 answer 329 views
...