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

55,787 answers

573 users

How to define and use object 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="person={firstName:'Emma',lastName:'Feller'}">

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

</div> 

</body>
</html>

<!-- 
run: 

Name: Emma Feller

-->

 



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="person={firstName:'Emma',lastName:'Feller'}">
 
<p>Name: <span ng-bind="person.firstName"></span>, <span ng-bind="person.lastName"></span></p>
 
</div> 
 
</body>
</html>
 
<!-- 
run: 
 
Name: Emma, Feller
 
-->

 



answered May 18, 2017 by avibootz

Related questions

2 answers 431 views
2 answers 425 views
1 answer 449 views
1 answer 427 views
1 answer 358 views
1 answer 342 views
...