Skip to content

Instantly share code, notes, and snippets.

@b-tekinli
Created May 26, 2024 15:22
Show Gist options
  • Save b-tekinli/bc7a5523463c74fed748327c43c056d2 to your computer and use it in GitHub Desktop.
Save b-tekinli/bc7a5523463c74fed748327c43c056d2 to your computer and use it in GitHub Desktop.
js interview arrow func
// ES5
var add = function(a, b) {
return a + b;
};
// ES6
const add = (a, b) => a + b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment