

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Summing cubes of natural numbers within a range in JavaScript
Problem
We are required to write a JavaScript function that takes in a range array of two numbers. Our function should find the sum of all the cubes of the numbers that falls in the specified range.
Example
Following is the code −
const range = [4, 11]; const sumCubes = ([l, h]) => { const findCube = num => num * num * num; let sum = 0; for(let i = l; i <= h; i++){ sum += findCube(i); }; return sum; }; console.log(sumCubes(range));
Output
4320
- Related Questions & Answers
- Prime numbers within a range in JavaScript
- Returning array of natural numbers between a range in JavaScript
- Finding sum of all numbers within a range in JavaScript
- Finding sequential digit numbers within a range in JavaScript
- Summing numbers from a string - JavaScript
- Summing array of string numbers using JavaScript
- PHP program to find the sum of cubes of the first n natural numbers
- PHP program to find the sum of cubes of natural numbers that are odd
- Finding the count of numbers divisible by a number within a range using JavaScript
- Python - Find the number of prime numbers within a given range of numbers
- Armstrong number within a range in JavaScript
- Counting prime numbers that reduce to 1 within a range using JavaScript
- JavaScript - summing numbers from strings nested in array
- Prime numbers in a range - JavaScript
- Generating desired pairs within a range using JavaScript
Advertisements