Become a member
Sign in
Anton
Anton

Anton

12 Following
14 Followers
·
  • Profile
  • Claps
  • Highlights

Highlighted by Anton

See more

From Node.js на бэкенде — настоящий бэкенд? by Александр Майоров / Alexander Mayorov — ProWEBIT

Node.js на бэкенде — настоящий бэкенд?

From I never understood JavaScript closures by Olivier De Meulder

1: function createCounter() {
2: let counter = 0
3: const myFunction = function() {
4: counter = counter + 1
5: return counter
6: }
7: return myFunction
8: }
9: const increment = createCounter()

10: const c1 = increment()
11: const c2 = increment()
12: const c3 = increment()
13: console.log('e…

From Using a React 16 Portal to do something cool by David Gilbertson

At first I hoped there would be an easy way to copy the styles into the new window. Then I remembered that my life is little more than a series of meaningless tasks to fill the minutes and hours, their only purpose to keep me distracted from the deep, howling emptiness inside.

Claps from Anton

See more

Building a Dynamic Tree Diagram with SVG and Vue.Js

Krutie Patel

Animate on Scroll with Intersection Observer

Mirosław Ciastek