Given a registered symbol, what does Symbol.keyFor return for it, and how is that lookup actually resolved at the engine level?
const s = Symbol.for('id');
const plain = Symbol('id');
console.log(Symbol.keyFor(s)); // ?
console.log(Symbol.keyFor(plain)); // ?