We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.
Yes, however, that would remove all falsy items from the array (null, undefined, 0, '').
That's definitely an important caveat with filter but I just meant for your example, where you're sorting the users. I thought in that specific case, filter would fit nicely with the functional Javascript angle of the article ;)
Great article man and solid advice on using reduce.
Instead of slice(), you could use filter(v => v)