As we’ve seen, usually all symbols are different, even if they have the same names. But sometimes we want same-named symbols to be same entities.
For instance, different parts of our application want to access symbol "id" meaning exactly the same property. Source.
Why not just export const mySymbol = Symbol("mySymbol");
instead? Then import it from anywhere in your application, making it pretty much a "global".
When is better to choose one over the other approach?