Skip to content

Instantly share code, notes, and snippets.

@Lahirutech
Created June 22, 2021 16:56
Show Gist options
  • Save Lahirutech/5121e7548421e82c635c034c27403b95 to your computer and use it in GitHub Desktop.
Save Lahirutech/5121e7548421e82c635c034c27403b95 to your computer and use it in GitHub Desktop.
let name="String parameter"
function myFunction(param1){
console.log(param1)
}
function testFunction(param1){
param1();
}
testFunction(myFunction(name));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment