Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.39 KB

09-Organizing-Code.md

File metadata and controls

71 lines (43 loc) · 1.39 KB

🧹 P09 – Organizing Code

Let’s clean up and prepare for scalability by putting utility functions into their own file.


🎯 Goal

  • Create a utils folder with general-purpose functions.
  • Write a reusable random(min, max) function.

🧩 Step 1: Create the Utils File

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.


📦 Example Use

random(1, 7); // Might return 4

This will be useful for selecting random blocks and shapes.


💬 Try This

  • Temporarily console.log(random(0, 3)) inside a component to test.
  • What happens if min === max?

🤖 AI Prompts

"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 of Math.round in a random() function?"

"How could you write a function that returns a random value from an array?"


🧠 Check for Understanding

  • Why is utils/index.js a better place for this than inside a component?
  • What happens if you reverse the min and max values?

✅ Commit Your Work

git add .
git commit -m "Added utils"
git push