Guest User

Untitled

a guest
Feb 11th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. export const DEFAULT_HEADERS = { //We are going to be using this const in other modules too.
  2. foo: "foo"
  3. };
  4.  
  5. export function someFunction(someCond) {
  6. const headers = DEFAULT_HEADERS;
  7. if (someCond) {
  8. headers.foo = "bar"; //Don't do this!
  9. }
  10. };
  11.  
  12. const props2 = {...props};
  13. props.alpha.innerAlpha.b = "BBB";
Add Comment
Please, Sign In to add comment