Skip to content

Instantly share code, notes, and snippets.

@yuya-takeyama
Last active October 29, 2017 16:34
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 yuya-takeyama/07a4d29a3bf57e6e1d6f96cf93730407 to your computer and use it in GitHub Desktop.
Save yuya-takeyama/07a4d29a3bf57e6e1d6f96cf93730407 to your computer and use it in GitHub Desktop.
var x: string | number = Math.random() > 0.5 ? 42 : 'forty-two';
var y: typeof x;
y = 's';
console.log(x); // => 42 or forty-two
console.log(y); // => s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment