Vse Mozhe Buty

Results 43 comments of Vse Mozhe Buty

Из-за этого ограничения трудно писать чисто технические посты, посвящённые разным аспектам Юникода. В них очень часто используются примеры строк и фрагменты кода с этими знаками.

It may be not absolutely matched with [Avoid Mental Mapping](https://github.com/ryanmcdermott/clean-code-javascript#avoid-mental-mapping) (and [Don't over-optimize](https://github.com/ryanmcdermott/clean-code-javascript#dont-over-optimize)). Maybe something like `datasetPart` and `chunkElement`? And I don't know if this is in the book (I...

Ah, sorry, I've misread the second cycle part.

Misformatting in subparts of `18.7.4 String.prototype: finding and matching`: `.indexOf(searchString: string, minIndex=0): number [ES1]` and `.lastIndexOf(searchString: string, maxIndex=Infinity): number [ES1]`: ![s](https://user-images.githubusercontent.com/10393198/87988572-3db9d100-cae9-11ea-8d87-783f89148c81.png) ![s2](https://user-images.githubusercontent.com/10393198/87988873-b456ce80-cae9-11ea-9096-e793af7ac592.png)

**40.3 Flags** > /g (.global): fundamentally changes how the following methods work. Maybe it is worth to add `String.prototype.replace()` to the list?

**40.5.9 Other methods for working with regular expressions** > Its first parameter of String.prototype.split() is either a string or a regular expression. Seems a bit off. Maybe "The first parameter...

**40.6.5 Summary: .global (/g) and .sticky (/y)** Two tables use one legend with "Column “#”" explanation, but the first table has "Calls" column header instead of "#".

25.5.1.1 Handling defaults via nullish coalescing Description mentions `'(no street)'` value, but code use `'(no name)'`.

25.6.9.4 A polyfill for Object.fromEntries() > The npm package object.fromentries is a polyfill for Object.entries() `Object.entries()` -> `Object.fromEntries()`?

In ["18.1 Why bigints?"](https://exploringjs.com/impatient-js/ch_bigints.html#why-bigints), the first link "(source)" lacks "href" value.