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 Working with 'for' Loops The Refactor Challenge – Duplicate Code

bobcat
bobcat
13,623 Points

Why use a variable to store the random RGB colours, instead of just returning the result to the function?

//why do you use this variable to store the random RGB?
function randomRGB() {
  const color = `rgb( ${randomVal()}, ${randomVal()}, ${randomVal()} )`;
  return color;
};

//instead of just returning the value back to the function?
function randomRGB() {
 //value is returned to the function
  return `rgb( ${randomVal()}, ${randomVal()}, ${randomVal()} )`;
};

1 Answer

Steven Parker
Steven Parker
229,732 Points

The lessons often do things with extra steps with the intent of more clearly illustrating what each step is doing. The fact that you're thinking of effective optimizing strategies is evidence of your learning progress and grasp of the material. Good job! :+1:

One you get into arrow functions, this can be optimized even further:

let randomRGB = () => `rgb( ${randomVal()}, ${randomVal()}, ${randomVal()})`;
bobcat
bobcat
13,623 Points

Thanks Steven!