Last active
October 9, 2019 06:52
-
-
Save sumitbopche01/0f72e8038ddc6f768a5e84c94da5b85f 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
function people(){ | |
console.log("Calls PM for taking action"); | |
let action = "save environment" | |
return primeMinister(action); | |
} | |
function primeMinister(action){ | |
return ministryOfEnvironment(action); | |
} | |
function ministryOfEnvironment(action){ | |
console.log("Plants tree :)"); | |
} | |
people(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment