Skip to content

Instantly share code, notes, and snippets.

@TunvirRahman
Last active May 7, 2021 21:48
Show Gist options
  • Select an option

  • Save TunvirRahman/62d8cc0a0e0199e51f883b2d52800bf9 to your computer and use it in GitHub Desktop.

Select an option

Save TunvirRahman/62d8cc0a0e0199e51f883b2d52800bf9 to your computer and use it in GitHub Desktop.
const someObject = {
title: null,
subTitle: "Subtitle",
buttonColor: null,
disabled: true
};
function creteOption(someObject) {
const newObject = Object.assign({
title: "Default Title",
subTitle: "Default Subtitle",
buttonColor: "blue",
disabled: true
},someObject)
return newObject
}
console.log(creteOption(someObject));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment