Difference between const fn1 = (a) => console.log(a) and const fn2 = (a) => { console.log(a); }
Can someone explain me the difference between these two?
Both of them seem to log the same thing.
Can someone explain me the difference between these two?
Both of them seem to log the same thing.