Skip to content

Commit

Permalink
특정 문자 제거하기
Browse files Browse the repository at this point in the history
  • Loading branch information
dudwns committed Mar 24, 2023
1 parent ee5702c commit 8376849
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Programmers/exam27.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
function solution(my_string, letter) {
return my_string.replaceAll(letter, "");
}

0 comments on commit 8376849

Please sign in to comment.