Created
August 16, 2024 01:38
-
-
Save jotafeldmann/935cc2b0d4efdeaf3b8e31ad6dc2ed76 to your computer and use it in GitHub Desktop.
console.utils.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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