SKSantan Kumar Dasinsantan-das.hashnode.dev·Apr 26, 2024 · 1 min readarrow functionsarrow functions are shorter syntax instead of using conventional way to write function. eg - const sum = (a,b) => { return a+b; } console.log(sum(5,6)); To make it even more shorter -> const sum = (a,b) => a+b; console.log(sum(5,7)); So if the arro...00