Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/markup/javascript/arrow-function.txt
2021-04-07 19:25:18 -04:00

5 lines
123 B
Plaintext
Vendored

var f = x => x;
f(x => x + (y=2, z=undefined, ...rest) => y);
() => null;
const FC = props => <p>functional component</p>;