Why Javascript decided to go with "#" (hash) prefix for private fields, instead of the traditional convention "_" (underscore) we see in other languages?
As described in: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields
class ClassWithPrivateField {
#privateField
}