알고리즘 40 - MakeUpperCase

jabae·2021년 10월 25일
0

알고리즘

목록 보기
40/97

Q.

Write a function which converts the input string to uppercase.

A)

function makeUpperCase(str) {
  return str.toUpperCase();
}
profile
it's me!:)

0개의 댓글