

What happens when compiling this code?
Trace the program the way the computer would, then make your call before running anything.
class Safe {
private password = 'secret';
}
const s = new Safe();
console.log(s.password);

Trace the program the way the computer would, then make your call before running anything.
class Safe {
private password = 'secret';
}
const s = new Safe();
console.log(s.password);