All files stringReverse.ts

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

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 111x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x
/**
 * 反轉輸入的字串
 * @param str - 要反轉的字串
 * 
 * 這個函式需要將輸入的字串反轉。你可以使用 JavaScript 的 String 和 Array 方法來完成這個任務。
 * 首先,使用 split 方法將字串轉換為字元陣列。然後,使用 reverse 方法將陣列反轉。最後,使用 join 方法將反轉後的陣列轉換回字串。
 */
export function reverseString(str: string): string {
    // 在此實現函式
    return str.split('').reverse().join('');
}