All files stringProcessing.ts

100% Statements 17/17
100% Branches 1/1
100% Functions 1/1
100% Lines 17/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 171x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 1x 1x 1x
/**
 * 任務:實作一個函式 `toUpperCase`,將輸入的字串轉換為大寫。
 *
 * 範例:
 * toUpperCase("hello") 應該回傳 "HELLO"
 * toUpperCase("world") 應該回傳 "WORLD"
 *
 * @param str - 一個需要被轉換為大寫的字串
 * @returns - 回傳轉換後的大寫字串
 */
export function toUpperCase(str: string): string {
    // 請在此處寫下你的程式碼
    return str.toUpperCase();
}
 
toUpperCase("hello"); 
toUpperCase("world");