Skip to content

Instantly share code, notes, and snippets.

@rajikaimal
Last active December 7, 2015 15:08
Show Gist options
  • Save rajikaimal/5736f6c560bc3edd6c52 to your computer and use it in GitHub Desktop.
Save rajikaimal/5736f6c560bc3edd6c52 to your computer and use it in GitHub Desktop.
Arrow functions
//es5
app.get('home',function(req,res){
res.json({name: 'Rajika', universe: 'DC'});
});
//es6 arrow functions
app.get('home',(req,res) => {
res.json({name: 'Rajika', universe: 'DC'});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment