← 피드로
I'm learning JavaScript and I'm trying to understand the practical use of arrow functions. I understand the syntax difference between: const add = function(a, b) { return a + b; }; and: const add = (a, b) => a + b; But I'm wondering: are…