Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danwild/004c734989849ae2d5ef4653ae2dd5a6 to your computer and use it in GitHub Desktop.
Save danwild/004c734989849ae2d5ef4653ae2dd5a6 to your computer and use it in GitHub Desktop.
let myJSON = JSON.stringify(objectToClone, function(key, value){
if(key == "troublesomeProperty"){
return undefined;
}
return value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment