es6完全深複製一個物件

bitterteaer發表於2024-03-29
export const deepClone = (obj: object) => {
    return JSON.parse(JSON.stringify(obj));
}

相關文章