Design Build Publish Repeat
Success follows a cycle—create, refine, and release. Every iteration brings growth, every challenge fuels innovation. Whether it’s websites, apps, or content, the formula stays the same: design with purpose.
function checkRandomNumber() {
let num = Math.floor(Math.random() * 100) + 1;
console.log("Generated Number:", num);
if (num % 2 === 0) {
console.log(num + " is Even.");
} else {
console.log(num + " is Odd.");
}
}
checkRandomNumber();