Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created July 31, 2023 16:18
Show Gist options
  • Save suhailgupta03/5f9d65c5316e05791be98c129df54dcc to your computer and use it in GitHub Desktop.
Save suhailgupta03/5f9d65c5316e05791be98c129df54dcc to your computer and use it in GitHub Desktop.
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