Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Last active November 11, 2019 13:53
Show Gist options
  • Save ramazankanbur/6b390deea823d681c3b9d16fa5d75a19 to your computer and use it in GitHub Desktop.
Save ramazankanbur/6b390deea823d681c3b9d16fa5d75a19 to your computer and use it in GitHub Desktop.
//ES5
function add (x, y, z) {
if (y === undefined)
y = 7;
if (z === undefined)
z = 42;
return x + y + z;
};
console.log(add1(1) === 50);
//ES6
function add1 (x, y = 7, z = 42) {
return x + y + z;
}
console.log(add1(1) === 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment