Skip to content

Instantly share code, notes, and snippets.

@Roeefl
Created December 28, 2022 14:25
Show Gist options
  • Save Roeefl/3e05d400dc851a112481f8c33edde581 to your computer and use it in GitHub Desktop.
Save Roeefl/3e05d400dc851a112481f8c33edde581 to your computer and use it in GitHub Desktop.
const doIt = (a, b, c) => {
a++;
b.push('baz');
c.key = 'other value';
};
const x = 5;
const y = ['foo', 'bar'];
const z = { key: 'some value' };
doIt(x, y, z);
// console.log(x); // output?
// console.log(y); // output?
// console.log(z); // output?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment