We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const foo = Symbol(); is a slow type while const foo = Symbol("bar"); is not.
const foo = Symbol();
const foo = Symbol("bar");
Status