Skip to content

Instantly share code, notes, and snippets.

@weblabtechnology
Last active December 6, 2017 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weblabtechnology/a66da8f583c9c5594b112f9415acc7f3 to your computer and use it in GitHub Desktop.
Save weblabtechnology/a66da8f583c9c5594b112f9415acc7f3 to your computer and use it in GitHub Desktop.
function f(arg1:number, arg2?:number) {
return arg1+arg2||0;
}
const res = f("hello", "world");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment