I use it to hide stuff in objects I still want to access but which should be hidden from users, which seems the intended use (read MDN for more info)
Example:
var sym = new Symbol();
module.exports[sym] = 'Haha, no one can see me :)';
I used this kind of thing in my application host's config module module: