0
What is the difference of using
const teste = () => {
}
or
function teste(){
}
inside React? I see some codes that use the const and others that use the functions, but from the tests I did, both work the same way.
0
What is the difference of using
const teste = () => {
}
or
function teste(){
}
inside React? I see some codes that use the const and others that use the functions, but from the tests I did, both work the same way.
Browser other questions tagged javascript react
You are not signed in. Login or sign up in order to post.