Skip to content

Instantly share code, notes, and snippets.

View catharyna-angela's full-sized avatar
📚
Learning....

Catharyna Angela catharyna-angela

📚
Learning....
View GitHub Profile
@catharyna-angela
catharyna-angela / random_integer.js
Created July 14, 2022 14:45
número inteiro aleatório em javascript
let num = parseInt(Math.random() * 10) //to tens *10, to hundreds *100, to thousands *1000...
console.log(num);