All files inputHandler.ts

100% Statements 26/26
100% Branches 2/2
100% Functions 1/1
100% Lines 26/26

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 17 18 19 20 21 22 23 24 25 261x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 2x 2x 2x 2x 2x 2x 4x 1x 1x 1x
/**
 * 這個函式的目的是根據輸入的類型返回對應的描述。
 * 你需要使用 TypeScript 的聯合類型來定義輸入可以是字串或數字,並在函式中返回對應的描述。
 * 函式的返回值應該是一個字串,這個字串描述了輸入的類型和值。
 * 
 * 範例:
 * 輸入: 'Hello'
 * 輸出: 'Input is a string: Hello'
 * 
 * 輸入: 123
 * 輸出: 'Input is a number: 123'
 */
 
export function handleInput(input: string | number) {
    // 在此實現函式
    if (typeof input === 'string') {
        return `Input is a string: ${input}`
    } 
    if (typeof input === 'number') {
        return `Input is a number: ${input}`
 
    }
}
 
handleInput('Hello');
handleInput(123);