JS Basic
JS Interview Programs
- JS Interview Programs
- JS Abundant Number
- JS Amicable Number
- JS Armstrong Number
- JS Average of N Numbers
- JS Automorphic Number
- JS Biggest of three numbers
- JS Binary to Decimal
- JS Common Divisors
- JS Composite Number
- JS Condense a Number
- JS Cube Number
- JS Decimal to Binary
- JS Decimal to Octal
- JS Disarium Number
- JS Even Number
- JS Evil Number
- JS Factorial of a Number
- JS Fibonacci Series
- JS GCD
- JS Happy Number
- JS Harshad Number
- JS LCM
- JS Leap Year
- JS Magic Number
- JS Matrix Addition
- JS Matrix Division
- JS Matrix Multiplication
- JS Matrix Subtraction
- JS Matrix Transpose
- JS Maximum Value of an Array
- JS Minimum Value of an Array
- JS Multiplication Table
- JS Natural Number
- JS Number Combination
- JS Odd Number
- JS Palindrome Number
- JS Pascalβs Triangle
- JS Perfect Number
- JS Perfect Square
- JS Power of 2
- JS Power of 3
- JS Pronic Number
- JS Prime Factor
- JS Prime Number
- JS Smith Number
- JS Strong Number
- JS Sum of Array
- JS Sum of Digits
- JS Swap Two Numbers
- JS Triangular Number
JavaScript Program to find Sum of Digits
Photo Credit to CodeToFun
π Introduction
In the realm of programming, manipulating and extracting information from numbers is a common task. One such operation is finding the sum of the digits of a given number. This involves breaking down the number into its individual digits and adding them together.
In this tutorial, we will explore a JavaScript program designed to find the sum of the digits of a given number.
π Example
Let's delve into the JavaScript code that accomplishes this task.
// Function to find the sum of digits of a number
function sumOfDigits(number) {
let sum = 0;
let digit;
// Iterate through each digit of the number
while (number !== 0) {
// Extract the last digit
digit = number % 10;
// Add the digit to the sum
sum += digit;
// Remove the last digit from the number
number = Math.floor(number / 10);
}
return sum;
}
// Driver program
// Replace this value with the number you want to find the sum of digits for
const number = 12345;
// Call the function to find the sum of digits
const result = sumOfDigits(number);
// Print the result
console.log(`The sum of digits of ${number} is: ${result}`);
π» Testing the Program
To test the program with different numbers, modify the value of number in the code.
The sum of digits of 12345 is: 15
π§ How the Program Works
- The program defines a function sumOfDigits that takes a number as input and returns the sum of its digits.
- Inside the function, it uses a while loop to iterate through each digit of the number.
- It extracts the last digit, adds it to the sum, and removes the last digit from the number.
- Replace the value of number in the main program with the desired number you want to find the sum of digits for.
- The program calls the sumOfDigits function and prints the result using console.log.
π§ Understanding the Concept of Sum of Digits
Before delving into the code, let's understand the concept of finding the sum of digits. It involves breaking down a number into its individual digits and adding them together.
π’ Optimizing the Program
While the provided program is effective, consider exploring and implementing alternative approaches or optimizations for finding the sum of digits.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (JavaScript Program to find Sum of Digits), please comment here. I will help you immediately.