clone object and fill every field with boolean value code example

Example 1: clone javascript object

let clone = Object.assign({}, objToClone);

Example 2: javascript clone object

var x = {myProp: "value"};
var xClone = Object.assign({}, x);

//Obs: nested objects are still copied as reference.

Example 3: how to make a deep copy in javascript

JSON.parse(JSON.stringify(o))

Example 4: clone an object javascript

//returns a copy of the object
function clone(obj) {
    if (null == obj || "object" != typeof obj) return obj;
    var copy = obj.constructor();
    for (var attr in obj) {
        if (obj.hasOwnProperty(attr)) copy[attr] = obj[attr];
    }
    return copy;
}