Skip to content

Instantly share code, notes, and snippets.

View thedumbtechguy's full-sized avatar

TheDumbTechGuy thedumbtechguy

  • Wildcard Technologies
  • Accra, Ghana
View GitHub Profile
<script>
/*
(c) by Thomas Konings
Random Name Generator for Javascript
*/
// https://shockwaveinnovations.com/code-names/
function capFirst(string) {
return string.charAt(0).toUpperCase() + string.slice(1)