You can use Math.random()
and Math.floor()
to generate random integers.
Example:
const randomInt = Math.floor(Math.random() * 10); // Generates a random integer between 0 and 9
console.log(randomInt);
Tags: basic, JavaScript, math
URL: https://www.tiktok.com/@jsmentoring/photo/7456916623870512417