I have a flat JS object:
{a: 1, b: 2, c: 3, ..., z:26}   I want to clone the object except for one element:
{a: 1, c: 3, ..., z:26}   What's the easiest way to do this (preferring to use es6/7 if possible)?
JavaScript provides 3 good ways to clone objects: using spread operator, rest operator and Object.
var clone = Object.assign({}, {a: 1, b: 2, c: 3}); delete clone.b;   or if you accept property to be undefined:
var clone = Object.assign({}, {a: 1, b: 2, c: 3}, {b: undefined}); 
                        If you use Babel you can use the following syntax to copy property b from x into variable b and then copy rest of properties into variable y:
let x = {a: 1, b: 2, c: 3, z:26}; let {b, ...y} = x;   and it will be transpiled into:
"use strict";  function _objectWithoutProperties(obj, keys) {   var target = {};   for (var i in obj) {     if (keys.indexOf(i) >= 0) continue;     if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;     target[i] = obj[i];   }   return target; }  var x = { a: 1, b: 2, c: 3, z: 26 }; var b = x.b;  var y = _objectWithoutProperties(x, ["b"]); 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With