Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 29, 2023 11:19
Show Gist options
  • Save vxhviet/1a0a43a9e2d44702653947f81307256c to your computer and use it in GitHub Desktop.
Save vxhviet/1a0a43a9e2d44702653947f81307256c to your computer and use it in GitHub Desktop.

[JavaScript] - Function Accepting Callback Function

SOURCE

const oneWord = function (str) {
  return str.replace(/ /g, '').toLowerCase();
};

const upperFirstWord = function (str) {
  const [first, ...others] = str.split(' ');
  return [first.toUpperCase(), ...others].join(' ');
};

// Higher-order function
const transformer = function (str, fn) {
  console.log(`Original string: ${str}`);
  console.log(`Transformed string: ${fn(str)}`);

  console.log(`Transformed by: ${fn.name}`); // name of the function
};

transformer('JavaScript is the best!', upperFirstWord);
transformer('JavaScript is the best!', oneWord);

const high5 = function () {
  console.log('👋');
};
document.body.addEventListener('click', high5);
['Jonas', 'Martha', 'Adam'].forEach(high5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment