• + 0 comments

    in TS

    function printArray<T>(arr: T[]) {
        arr.forEach(i => console.log(i))
    }