I vividly remember my first time learning about functions. Specifically functions with multiple parameters. I remember staring at the screen rereading the line that declared the function then skipping down to where the function was being invoked. Again and again I read function doThis(param1, param2){ …
} doThis(“clean up”, “sleep”); …