Skip to content

Instantly share code, notes, and snippets.

View harshvats2000's full-sized avatar
🏠
Working from home

HARSH VATS harshvats2000

🏠
Working from home
View GitHub Profile
@tkon99
tkon99 / name.js
Last active September 16, 2024 20:38
Random Name Generator for Javascript
/*
(c) by Thomas Konings
Random Name Generator for Javascript
*/
function capFirst(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function getRandomInt(min, max) {