Skip to content

Instantly share code, notes, and snippets.

@mikeytown19
Created February 18, 2019 21:42
Show Gist options
  • Save mikeytown19/4c73026654202a76e2c9652dfd5396d1 to your computer and use it in GitHub Desktop.
Save mikeytown19/4c73026654202a76e2c9652dfd5396d1 to your computer and use it in GitHub Desktop.
narcissistic
let narcissistic = (v) => v.toString().split('').reduce((a,b,c, d) => a += b ** (d.length), 0) === v;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment