JavaScript и TypeScript чем разница?
кроме 165, я не понимаю, вы можете объяснить?
function compose (f, g) { return function (...args) { return f.call(this, g.apply(this,args)); }; } const sum = (x,y) => x+y; const square = x => x*x; compo...
Всем привет, я новичок хочу разобраться. const map = function (a, ...args){ return a.map(...args); }; function mapper (f){ return a => map (a, f); } const increment = ...