Skip to content

Instantly share code, notes, and snippets.

@sahilpaudel
Last active April 14, 2020 07:21
Show Gist options
  • Save sahilpaudel/7d7d5910991179288d33cd5654870e43 to your computer and use it in GitHub Desktop.
Save sahilpaudel/7d7d5910991179288d33cd5654870e43 to your computer and use it in GitHub Desktop.
How to create functions in JS
// Old way to create a function
function doSomething() {
console.log("Inside the old function");
}
// New ES6 way to create a function
const doSomething = () => {
console.log("Inside the new function");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment