Arrow functions
Arrow functions
There's very simple and concise syntax for creating functions, that's often better than Function Expressions.
Syntax
Let sum = (a, b) => a + b;
There's very simple and concise syntax for creating functions, that's often better than Function Expressions.
Let sum = (a, b) => a + b;
Clickable & Draggable!