Posts by Fabiano Gomes • 11 points
1 post
-
1
votes0
answers211
viewsQ: What differentiates an Arrow Function from a function, say, "classica"?
I started a nodejs course and the instructor said the following code: modules.exports.addNote = function(){} Would be replaced by: modules.exports.addNote = () => {} What would be the difference…