Posts by Marcos Pereira • 1 point
1 post
-
-2
votes1
answer22
viewsA: as variable return within a function
You could concatenate if the case of being two string would be like this: return nome1 + " " + nome2; Or if you are Javascript ES6 you can also use Template strings return `${nome1} ${nome2}`;…