Skip to content

Instantly share code, notes, and snippets.

@devotdev
Last active December 18, 2024 09:18
Show Gist options
  • Save devotdev/1f34988c51fc00807fb935eee30c1466 to your computer and use it in GitHub Desktop.
Save devotdev/1f34988c51fc00807fb935eee30c1466 to your computer and use it in GitHub Desktop.
Function expression
const divide = function (a, b) {
return a / b;
};
console.log(divide(10, 2)); // Output: 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment