Created
February 18, 2019 21:42
-
-
Save mikeytown19/4c73026654202a76e2c9652dfd5396d1 to your computer and use it in GitHub Desktop.
narcissistic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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