Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 15, 2023 15:02
Show Gist options
  • Save suhailgupta03/63c7cdd9c55106eee96e384e6aa72bed to your computer and use it in GitHub Desktop.
Save suhailgupta03/63c7cdd9c55106eee96e384e6aa72bed to your computer and use it in GitHub Desktop.
function greet() {
console.log("Good evening, friends!");
console.log("One more statement before the fn exits");
}
// greet is the name of the function [entity]
greet(); // calling the function named greet
// () are mandatory to call a function
console.log("After the function call");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment