I recently started to learn React native and I’ve seen some differences in function initialization
What is the difference between the old one (the one I used to use)
function myFunction(){...}
and the new one
const myFunction = () => {...}
I recently started to learn React native and I’ve seen some differences in function initialization
What is the difference between the old one (the one I used to use)
function myFunction(){...}
and the new one
const myFunction = () => {...}