美文网首页
前端面试-深拷贝

前端面试-深拷贝

作者: 姜酱i | 来源:发表于2021-07-12 17:10 被阅读0次

    递归

    let deepClone = function(o){
      let result = Array.isArray(o)?[]:{}
      for(let k in o ){
        if(o[k] instanceof Array||o[k] instanceof Object){
          result[k] = deepClone(o[k])
        }else{
          result[k]=o[k]
        }
      }
      return result
    }
    

    JSON

    let deepClone = function(o){
      return JSON.parse(JSON.stringify(o))
    }
    

    相关文章

      网友评论

          本文标题:前端面试-深拷贝

          本文链接:https://www.haomeiwen.com/subject/yyqdpltx.html