Decorators - JavaScript - Snipit

PHOTO EMBED

Thu Apr 14 2022 08:55:01 GMT+0000 (Coordinated Universal Time)

Saved by @nebozoid #javascript

function log(fn) {
  return function(actualValue) {
    const modifiedActualValue = `Logged value: ${actualValue}`;
    fn(modifiedActualValue);
  }
}

const logger = log(console.log);

logger('Pera');
//Logged value: Pera
content_copyCOPY

Simple use case of decorator pattern in js

https://snipit.io/lists/20181/65453