Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 22, 2023 11:49
Show Gist options
  • Save ilyasozkurt/4445134d4965bc819050484929a12647 to your computer and use it in GitHub Desktop.
Save ilyasozkurt/4445134d4965bc819050484929a12647 to your computer and use it in GitHub Desktop.
let person = {name: 'John'};
Object.keys(person).forEach(key => {
if (key === 'name') {
person[key] = 'Jane';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment