Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops What are Loops?

In layman's terms, what is the difference between "randomNum" and "randomNumber"?

At first, my code wouldn't preview because for some reason I wanted to deviate from instruction and use "randomNumber" consistently. I now appreciate that they are different but I'd like to learn more from this experience, drawing insight from wiser minds. Any feedback would be appreciated by this newbie! Thanks!

1 Answer

Kieran Barker
Kieran Barker
15,028 Points

Given the following code:

function randomNumber(upper) {
  return Math.floor(Math.random() * upper) + 1;
}

var counter = 0;
while (counter < 10) {
  var randNum = randomNumber(6);
  document.write(randNum + ' ');
  counter += 1;
}

randomNumber is the name of a function. What you're doing with randNum is calling the function, passing the value 6 into it, and storing the result of this operation into the variable called randNum. The variable could be called anything! The name randNum isn't special; it's just suitable given what we're storing inside it. Does this make any sense?

Absolutely! Thank you! Iā€™m working full-time and in the midst of a coding camp, so sometimes I have a serious case of the brainfarts. ?

Thank you!