Programmers: 숫자 문자열과 영단어 with JS
function solution(s) { var answer = 0; const letter = ['zero', 'one', 'two', 'three', 'four','five','six','seven', 'eight', 'nine','zero'] String.prototype.replaceAll = function(org,dest) { return this.split(org).join(dest); } for(let i = 0; i