Getting Started with Arrow Functions in Javascript

R.
3 min readDec 10, 2020

Overview

When I started learning JS, I learned the language by always having to write out my functions using the function keyword.

However, after the introduction of ES6, you no longer have to do this. This feature is called arrow functions. They help make writing functions quicker.

--

--