Home > Web Front-end > JS Tutorial > js implements deep copy code

js implements deep copy code

小云云
Release: 2018-03-22 16:27:36
Original
1583 people have browsed it

This article mainly shares with you the js implementation of deep copy code. We will share with you the writing method of es5 and the writing method of es6 respectively, hoping to help everyone.

How to write es5

    function clone(obj) {
        if(obj == null) return null;
        let newObj = obj instanceof Array ? [] : {};
        for(var i in obj) {
            newObj[i] = typeof obj[i] == "object" ? clone(obj[i]) : obj[i];
        }
        return newObj;
    }
Copy after login

How to write es6

    const clone2 = (obj) => {
        let proto = Object.getPrototypeOf(obj);
        return Object.assign({}, Object.create(proto), obj)
    }
Copy after login

Related recommendations:

js realizes deep copy code sharing

The above is the detailed content of js implements deep copy code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
What are JavaScript hook functions?
From 1970-01-01 08:00:00
0
0
0
What is JavaScript garbage collection?
From 1970-01-01 08:00:00
0
0
0
c++ calls javascript
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template