Skip to content

Instantly share code, notes, and snippets.

@AndreyShal
Last active November 4, 2023 10:37
Show Gist options
  • Save AndreyShal/7beab628243d298c74851860cd6d60a5 to your computer and use it in GitHub Desktop.
Save AndreyShal/7beab628243d298c74851860cd6d60a5 to your computer and use it in GitHub Desktop.
Sum function
// sum
const sum = (a: number, b: number) => {
return a + b;
}
@AndreyShal
Copy link
Author

first comment in gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment