DEV Community

Calvin
Calvin

Posted on

1

Reading Snippets [39 => Arrow Functions]

Despite the similarities in functionality, arrow functions differ from regular JavaScript functions in several ways:

🏹 Syntax - Curly brackets are not required

🏹 Arguments Binding- Arrow functions do not have arguments binding

🏹 This Keyword- Arrow functions do not have their own this

🏹 New Keyword- Arrow functions can never be used as constructor functions

🏹 Parameters - Arrow functions can never have duplicate named parameters

Source:Ashutosh Verma,Medium

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay