Created
July 31, 2023 16:18
-
-
Save suhailgupta03/5f9d65c5316e05791be98c129df54dcc 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 SOME_NAME() { | |
var number1 = 100; | |
var number2 = 200; | |
var sumOfNumbers = number1 + number2; | |
console.log(sumOfNumbers); | |
} | |
SOME_NAME(); | |
// In the above statement, we are calling the function SOME_NAME() | |
// and it will print the sum of the numbers. | |
// calling the function means that we are asking the function | |
// to execute the code inside it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment