Posts by Caio Maciel • 3 points
1 post
-
0
votes2
answers410
viewsQ: Need to declare variables in a Javascript function
Hello. I’m starting to learn programming logic. When I create a Javascript function, I declare and ask to return its value. function exemplo(teste){ var saida = teste + 4; return saida; } Well, when…