Created
May 15, 2023 15:23
-
-
Save suhailgupta03/dea4de1e95b54a953d6ce2fe053a683c 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
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