Update readme and add myself page

Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2023-05-04 01:50:28 +06:00
parent d72d852552
commit eece29af28
29 changed files with 3515 additions and 1434 deletions

View File

@@ -22,7 +22,7 @@ const color = [
]
// get a random number
const getRandomInt = (min: number, max: number) => {
function getRandomInt(min: number, max: number) {
min = Math.ceil(min)
max = Math.floor(max)
return Math.floor(Math.random() * (max - min + 1)) + min