Posts by Pedro Junior • 1 point
4 posts
-
-1
votes2
answers329
viewsA: Grab Value from multiple buttons in Javascript
In that case, you’d better use input type="radio" in your HTML and take the value of these inputs with Javascript to insert dps into a div.…
-
0
votes1
answer153
viewsA: Get data from each firebase key with javascript
The answer you get in the "snapshot" variable is not the data that comes from your database. In order for you to have access to the data, you have to perform the ". val()" function in the firebase…
-
0
votes1
answer144
viewsA: Firebase Authentication with googleAuth
It is necessary to enable in the Firebase Console the login method using Google, otherwise Firebase will refuse authentication. To enable, just do the following: Firebase console ->…
-
0
votes5
answers2691
viewsA: Array, how to apply in this question?
As you can only use for and if, below is my solution: function acontece(estudantes, minimo) { var quantidade = 0; //variável contadora for(var i = 0; i < estudantes.length; i++) {…