Skip to content

Instantly share code, notes, and snippets.

@jotafeldmann
Created August 16, 2024 01:38
Show Gist options
  • Save jotafeldmann/935cc2b0d4efdeaf3b8e31ad6dc2ed76 to your computer and use it in GitHub Desktop.
Save jotafeldmann/935cc2b0d4efdeaf3b8e31ad6dc2ed76 to your computer and use it in GitHub Desktop.
console.utils.js
// map for list-like things
// mmap(document.querySelectorAll('a'),console.log)
function mmap (listLike, lambda){ for(let i of listLike){lambda(i)} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment