Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created November 9, 2015 12:39
Show Gist options
  • Save csharpforevermore/82e106994b01bf6788b0 to your computer and use it in GitHub Desktop.
Save csharpforevermore/82e106994b01bf6788b0 to your computer and use it in GitHub Desktop.
function toDoubleDigits(digits) {
return (digits[1]?digits:"0"+digits[0]);
}
@csharpforevermore
Copy link
Author

Used for convert single digits into doubles.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment