A

Admin • 828.03K Points
Coach

Q. What will be the output of the following JavaScript code?

Code:
<script>
var values = [10, 20, 30, 40];

var result = values.reduceRight(function(x,y){
return (x + y);
});

document.write("Result: " + result);
</script>
  • (A) Result: 40
  • (B) Result: 70
  • (C) Result: 90
  • (D) Result: 100
  • Correct Answer - Option(D)
  • Views: 8
  • Filed under category JavaScript
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.