Объясните принцип работы дженерики в Express
🔴 Сложно
16 июля 2023
Пример кода
javascript
12345678910
function createCounter() {
let count = 0;
return function() {
return ++count;
};
}
const counter = createCounter();
console.log(counter()); // 1
console.log(counter()); // 2