DEV Community

Discussion on: JavaScript For Testers

Collapse
 
smlka profile image
Andrey Smolko

Hey=) Nice intro in JS, but I would like to leave one comment.
On arrow function picture In my opinion there will be better to modify comments like that:
a => { ... } // statements;
a => a * a // expression;

Coz in JS terms statement and expression have different meaning
BR