Created
July 16, 2019 15:38
-
-
Save vishalm30/5bb2c34d57318ed618071f71877be6ca 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 add(a,b){ | |
| var c = a+b; | |
| return c; | |
| } | |
| function main(){ | |
| var c = add(2,5); | |
| console.log(c); | |
| } | |
| main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment