Skip to content

Instantly share code, notes, and snippets.

const logger = {
next(value) {
console.log(value);
}
};
const logger2 = {
next(value) {
console.log("logger 2 " + value);
}
};