+2 votes
in Angular by
What will be the output for the following code?

<div ng-app="""" ng-init=""points=[1,15,19,2,40]"">  

<p>The output is {{ points[2] }}</p>  

</div>  

a) The output is 1

b) The output is 15

c) The output is 19

d) The output is 2

1 Answer

0 votes
by

c) The output is 19

Related questions

+2 votes
asked Jul 5, 2022 in Angular by sharadyadav1986
+1 vote
asked Jul 5, 2022 in Angular by sharadyadav1986
...