Let’s clean up and prepare for scalability by putting utility functions into their own file.
- Create a
utils
folder with general-purpose functions. - Write a reusable
random(min, max)
function.
Make a new file: src/utils/index.js
Add this function:
export const random = (min, max) => {
return Math.floor(Math.random() * (max - min + 1)) + min;
};
✅ This function returns an integer between min
and max
, inclusive.
random(1, 7); // Might return 4
This will be useful for selecting random blocks and shapes.
- Temporarily
console.log(random(0, 3))
inside a component to test. - What happens if
min === max
?
"What is Math.random() and how deos it work?"
"If Math.random() only returns a number between 0.0 and 1.0 how can I get a range of random numbers like numbers 1 to 100? "
"Why use
Math.floor
instead ofMath.round
in arandom()
function?"
"How could you write a function that returns a random value from an array?"
- Why is
utils/index.js
a better place for this than inside a component? - What happens if you reverse the
min
andmax
values?
git add .
git commit -m "Added utils"
git push