Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function convertDigitToWord(value) {
- switch(value) {
- case 1: return 'one';
- case 2: return 'two';
- case 3: return 'three';
- case 4: return 'four';
- case 5: return 'five';
- case 6: return 'six';
- case 7: return 'seven';
- case 8: return 'eight';
- case 9: return 'nine';
- }
- }
- console.log(convertDigitToWord(8));
- console.log(convertDigitToWord(3));
- console.log(convertDigitToWord(5));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement