What does this program print?

from Private fields
Node 24 intermediate 2 min

What does this program print?

JavaScript
class TokenBox {
  #token = 'inside';

  static hasBrand(value) {
    return #token in value;
  }
}

const box = new TokenBox();
console.log(Object.keys(box));
console.log(box['#token']);
console.log(TokenBox.hasBrand(box));
Open in playground
Report an error