Skip to content

Instantly share code, notes, and snippets.

@willie-hung
Created August 3, 2023 18:53
Show Gist options
  • Save willie-hung/db41da7cab0764d223388e0d5357eb83 to your computer and use it in GitHub Desktop.
Save willie-hung/db41da7cab0764d223388e0d5357eb83 to your computer and use it in GitHub Desktop.
post_33
const firstFunction = () => {
console.log("Hello from the first function");
};
const secondFunction = () => {
console.log("Hello from the second function");
};
firstFunction();
secondFunction();
// Output:
// Hello from the first function
// Hello from the second function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment