Skip to content

Instantly share code, notes, and snippets.

@maggiben
Created February 22, 2017 14:51
Show Gist options
  • Save maggiben/8551b3c6be3249bf9a450ae4e72a58e7 to your computer and use it in GitHub Desktop.
Save maggiben/8551b3c6be3249bf9a450ae4e72a58e7 to your computer and use it in GitHub Desktop.
Get Sup Index Number
function getNumberSup(number) {
const sup = ['⁰','¹', '²', '³','⁴', '⁵', '⁶', '⁷', '⁸', '⁹'];
return number.toString().split('').map(x => (sup[parseInt(x)])).join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment