HackerTrans
TopNewTrendsCommentsPastAskShowJobs

loudgas

no profile record

comments

loudgas
·anno scorso·discuss
Your Web browser is probably the best example. When you visit a Web site, your browser discovers resources and understands how it can interact with them.
loudgas
·2 anni fa·discuss
Would that make this the Japanese Sword Fallacy Fallacy?
loudgas
·3 anni fa·discuss
Neat idea. Is there a color legend somewhere? I don’t see one.
loudgas
·3 anni fa·discuss
Any behavior that is not defined in the spec[0] is, by definition, an implementation detail. Relying on undefined behavior is a recipe for bugs. If you need an immutable array, and the spec doesn't require the returned array to be immutable, you should create one yourself.

[0] https://tc39.es/ecma262/multipage/indexed-collections.html#s...
loudgas
·3 anni fa·discuss
>Buffer also comes with additional caveats. For instance, Buffer#slice() creates a mutable segment linked to the original Buffer, while Uint8Array#slice() creates an immutable copy, resulting in possible unpredictable behavior. The problem is not the behavior of the Buffer#slice() method, but the fact that Buffer is a subclass of Uint8Array, but changes the behavior of an inherited method.

But this is an implementation detail, not specified behavior. Changing method behavior in subclasses is a key aspect of inheritance.
loudgas
·3 anni fa·discuss
The article mentions this in the Disallowed Names section.