JS.EventLoop
https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop Читать на сайте автора.
Этот автор еще пишет свою биографию.Пока позвольте сказать мы гордимся Станислав Пантелеев contributed a whooping 121 записи.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop Читать на сайте автора.
let doSmth = () => { return new Promise((resolve, reject) => { if (Math.random() > 0.5) { resolve(‘doSmth success’); } else { reject(‘doSmth Fail’); } Читать на сайте автора.
Sugar for promises let doSmth = () => { return new Promise((resolve, reject) => { if (Math.random() > 0.5) { resolve(‘doSmth success’); } else { Читать на сайте автора.
let doSmth = () => { return new Promise((resolve, reject) => { if (Math.random() > 0.5) { resolve(‘doSmth success’); } else { reject(‘doSmthFail’); } }) Читать на сайте автора.
Task Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node Читать на сайте автора.
Decision /** * Definition for a binary tree node. * public class TreeNode { * public int val; * public TreeNode left; * public TreeNode Читать на сайте автора.
source Given the roots of two binary trees p and q, write a function to check if they are the same or not. Two binary trees are considered Читать на сайте автора.
//one(plus(two())) //two(plus(one())) const one = (x) => { return x ? 1+ x : 1; } const plus = (x) => { return x; } Читать на сайте автора.
Managed types are string interface record array anonymous method variant Читать на сайте автора.
Good explanation from stackoverflow Group By X means put all those with the same value for X in the one group. Group By X, Y means put all those Читать на сайте автора.