AWS Application Load Balancer now supports TLS 1.3
aws.amazon.com3 pointsby bluetech0 comments
const makeCounter = () => {
let count = 0;
return harden({
incr: () => (count += 1),
decr: () => (count -= 1),
});
};
The "counter object" here is mutable. I think that's what they mean.