Created
June 22, 2021 16:56
-
-
Save Lahirutech/5121e7548421e82c635c034c27403b95 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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