DEV Community

Adrian
Adrian

Posted on

What’s your alternative solution? Challenge #6

About this series

This is series of daily JavaScript coding challenges... for both beginners and advanced users.

Each day I’m gone present you a very simple coding challenge, together with the solution. The solution is intentionally written in a didactic way using classic JavaScript syntax in order to be accessible to coders of all levels.

Solutions are designed with increase level of complexity.

Today’s coding challenge

Calculate 10! (factorial of 10).

Enter fullscreen mode Exit fullscreen mode

(scroll down for solution)

Code newbies

If you are a code newbie, try to work on the solution on your own. After you finish it, or if you need help, please consult the provided solution.

Advanced developers

Please provide alternative solutions in the comments below.

You can solve it using functional concepts or solve it using a different algorithm... or just solve it using the latest ES innovations.

By providing a new solution you can show code newbies different ways to solve the same problem.

Solution

// Solution for challenge06

var prod = 1;

for(var i = 1; i <= 10; i++)
{
    prod *= i;
}

println(prod);

Enter fullscreen mode Exit fullscreen mode

To quickly verify this solution, copy the code above in this coding editor and press "Run".

Note: The solution was originally designed for codeguppy.com environment, and therefore is making use of println. This is the almost equivalent of console.log in other environments. Please feel free to use your preferred coding playground / environment when implementing your solution.

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

Top comments (4)

Collapse
 
westdabestdb profile image
Görkem • Edited
let prod = 1;
[...Array(10).keys()].map(x => {
  ++x;
  prod *= x;
});
console.log(prod);
Collapse
 
aleksandrhovhannisyan profile image
Aleksandr Hovhannisyan

This takes a very simple problem and either intentionally or unintentionally obfuscates it. Why?

 
13point5 profile image
Bharath Sriraam R R

Good point, thank you!

Collapse
 
13point5 profile image
Bharath Sriraam R R

May I know what you mean by "wrong"? If you mean inefficient please do elaborate, I would like to hear about it!

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay