function randomNumber(min, max) {
${randomNumber(-50, 50)}vw ${randomNumber(-50, 50)}vh ${randomNumber(0, 3)}px ${randomNumber(0, 3)}px #fff,
return Math.floor(Math.random() * (max - min + 1)) + min
}
const STAR_COUNT = 100
let result = ""
for(let i = 0; i < STAR_COUNT; i++){
result +=
}
console.log(result.substring(0, result.length - 1))
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)