Detailed Overview of Well-known Symbols
转载: Detailed Overview of Well-known Symbols
Symbol is a new primitive type available from ECMAScript 2015, which allow to create unique identifiers let uniqueKey = Symbol('SymbolName') .
You may use symbols as keys of properties in objects. A list of symbols that JavaScript treats specially...
more...