Объясните принцип работы компоненты в Kubernetes

🟢 Легко
3 августа 2024

Пример кода

javascript
12345678910
function createCounter() {
  let count = 0;
  return function() {
    return ++count;
  };
}

const counter = createCounter();
console.log(counter()); // 1
console.log(counter()); // 2

Ответ