Skip to content

Instantly share code, notes, and snippets.

@ianks
Last active June 21, 2017 22:06
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 ianks/c67e6801388d2ce87a5c2955041d40b6 to your computer and use it in GitHub Desktop.
Save ianks/c67e6801388d2ce87a5c2955041d40b6 to your computer and use it in GitHub Desktop.
function maybePrint(x?: string) {
if (x != null) {
// we know that x will be a string in this scope
console.log(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment