Skip to content

Instantly share code, notes, and snippets.

@louy2
Last active February 13, 2019 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louy2/de06c0eab2bd1750794c160c31180a21 to your computer and use it in GitHub Desktop.
Save louy2/de06c0eab2bd1750794c160c31180a21 to your computer and use it in GitHub Desktop.
Simple one-line hash (don't use for anything serious)
let hash = k => Array.from(k).map(s => s.charCodeAt(0)).reduce((a, c) => a + c, 0) % 111 + 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment