Skip to content

Instantly share code, notes, and snippets.

@agrcrobles
Created January 17, 2017 15:53
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 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;
};