@andreyradkevich
Nothing here yet.
Nothing here yet.
Apr 2, 2021 · 1 min read · class O { constructor() { this.summ = 0 } one(n) { this.summ += n return this } two(t) { this.summ += t return this } get() { return this.summ } } const obj = { summ: 0, one: function (n) { this.summ +...
Join discussionMar 29, 2021 · 1 min read · This article directly connected with basic tree implementation example, and here you will find some additional methods . All methods did recursively. All of those methods are useful when you want to get a data list, it is a little bit trickier than ...
Join discussion
Mar 29, 2021 · 2 min read · On the internet, there is tons of information on this topic. What is a tree data structure, why is it important, when do we need to use, etc. But there isn't a lot of places where you can find a js example on this topic. I will attach this example he...
Join discussion
Nov 22, 2020 · 6 min read · Below you can see how the git folders tree looks like. I try to find out how does git works under the hood. I've discovered now objects folders which consist of 3 main parts of git (blob, tree, commit). tree .git .git ├── branches ├── COMMIT_EDITMSG...
Join discussion