Symbol description in JavaScript

A description can be added to symbols. This description don't affect anything, it is just a hint about what is contained in the symbol:

let sym = Symbol('text description'); console.log(sym);

Create several symbols and add descriptions to them.

enru