Skip to content

Instantly share code, notes, and snippets.

@agrcrobles
Created January 17, 2017 15:53
Show Gist options
  • Save agrcrobles/fd708f5a378305db35c2ac18369010f1 to your computer and use it in GitHub Desktop.
Save agrcrobles/fd708f5a378305db35c2ac18369010f1 to your computer and use it in GitHub Desktop.
type Size = 1 | 2 | 3;
const GetSize = (): Size => {
const result: number = parseInt(Math.random() * 20);
if (result > 3) {
return 3;
}
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment