Skip to content

Instantly share code, notes, and snippets.

@rarmatei
Created June 25, 2018 19:31
Show Gist options
  • Save rarmatei/de3cf6b78963fd4030e0acf81b5d814a to your computer and use it in GitHub Desktop.
Save rarmatei/de3cf6b78963fd4030e0acf81b5d814a to your computer and use it in GitHub Desktop.
class AmountInput {
private static MAX_ALLOWED = 99_999_999;
amount: number = 0;
showTooltip() {
//show tooltip
setTimeout(() => {
//hide tooltip
}, 2_500);
}
formatMillion() {
return this.amount / 1_000_000 + "M";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment