Consider the below statement – what will be the output (6)?

27. Consider the below statement – what will be the output?

<div ng-app="" ng-init="values=[10, 20, 30]">
  <p>The value is {{values[0]}} + {{values[2]}}</p>
</div>
  1. The value is 10 + 30
  2. The value is 40
  3. The value is NaN
  4. The value is Undefined

Answer: A) The value is 10 + 30

Explanation:

The output will be "The value is 10 + 30". Here, the addition operation will not be performed it will just print.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.