Skip to content

Instantly share code, notes, and snippets.

@LuisPaGarcia
Created October 22, 2021 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuisPaGarcia/771df8ffc55fc06bdc50ad3f446dfef5 to your computer and use it in GitHub Desktop.
Save LuisPaGarcia/771df8ffc55fc06bdc50ad3f446dfef5 to your computer and use it in GitHub Desktop.
var init = {a: 123, b: 456, c: { d: false}};
var output = {};
for([key, output[key]] of Object.entries(init));
console.log(output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment