반응형
const a = function(fn) {
return function (...args) {
return fn(...args);
};
};
const b = function(a,b) {
return a+b;
};
const c = a(b);
c(1,2);
/* print 3 */
a(b)(1,2);
/* print 3 */
반응형
'Web > Javascript|TypeScript' 카테고리의 다른 글
[JS] ubuntu 18.04 npm install Error (feat. gyp) (0) | 2022.02.18 |
---|---|
[typescript] interface 키값이라고 하기 (0) | 2021.10.19 |
[TS] typescript-excess-property-checks (0) | 2021.08.31 |
[classnames] Could not find a declaration file for module (0) | 2021.07.07 |
[JAVASCRIPT] 한번 쯤 궁금한것 (0) | 2021.06.30 |