Question: A) Write a function named sumEvens that accepts a nonnegative integer n and returns the sum of the even integers 1 .. n, inclusive. Use
A) Write a function named sumEvens that accepts a nonnegative integer n and returns the sum of the even integers 1 .. n, inclusive. Use a for loop that counts from 1 to n.
Examples:? ? sumEvens(10) => 30? sumEvens (0) => 0?
javascript using Dev tools to check work
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
