Posts by JL Mendonca • 23 points
2 posts
-
1
votes1
answer68
viewsQ: Logic of function loop
I’m starting study of functions in Javascript and analyzing the loop below came to me the question about the logic of the result. function foo(i) { if (i < 0) return; document.writeln('begin:' +…
-
1
votes1
answer69
viewsQ: Javascript variable created with get() in firestore document field
I need to feed a variable the contents of the field "site" of the document pre-selected in a collection "restaurants" in the Firestore, to then provide the hyperlink of the site with the tag…