Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 15, 2023 15:23
Show Gist options
  • Save suhailgupta03/dea4de1e95b54a953d6ce2fe053a683c to your computer and use it in GitHub Desktop.
Save suhailgupta03/dea4de1e95b54a953d6ce2fe053a683c to your computer and use it in GitHub Desktop.
console.log("hello");
console.log("hello 2");
console.log("hello 3");
var z = 100
function greet() {
console.log("Good evening, friends!");
console.log("Good morning, friends!");
} // Here the fn will EXIT, which means
// that it has carried out its job
// greet is the name of the function [entity]
greet(); // calling the function named greet
// () are mandatory to call a function
// other instructions present in the code
var x = 1;
console.log(x + 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment