Ad
Code
Diff
  • const nums = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
    function digitToText(digit) {
      return nums[digit]
    }
    • const nums = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
    • function digitToText(digit) {
    • if (digit == 1) {
    • return 'one'
    • }
    • if (digit == 2) {
    • return 'two'
    • }
    • if (digit == 3) {
    • return 'three'
    • }
    • if (digit == 4) {
    • return 'four'
    • }
    • if (digit == 5) {
    • return 'five'
    • }
    • if (digit == 6) {
    • return 'six'
    • }
    • if (digit == 7) {
    • return 'seven'
    • }
    • if (digit == 8) {
    • return 'eight'
    • }
    • if (digit == 9) {
    • return 'nine'
    • }
    • if (digit == 0) {
    • return 'zero'
    • }
    • return nums[digit]
    • }