js 封装一个实现数组、对象深拷贝的函数 HTML代码<!DOCTYPE html> 深拷贝 function deepCopy(obj) { // 1. // let res = Array.isArray(obj) ? [] : {} // for (const [k, v] of Object.entries(obj)) { // res[k] = typeof v === "object" ? deep...