|
|
|
|
|
by wrs
56 days ago
|
|
That field is opaque, but the entire type isn’t, no matter what you do. E.g., let x = new Age();
x.notSoOpaque = 42;
console.log(x.notSoOpaque);
We can all agree to layer conventions on top of the language so we just don’t do stuff that violates the opacity. But the same is true of assembly language. |
|