For example, if you want to console.log `a` in this function, you have to use a comma instead of a semicolon. ```js const sum = (a, b) => ( console.log(a), a + b ); ```
For example, if you want to console.log
ain this function, you have to use a comma instead of a semicolon.