Posts by Julio S • 17 points
4 posts
-
1
votes1
answer37
viewsQ: Delete an item and add again by starting index by counting 1 {ERROR}
When you add name, age and quantity will count for index ,but when you click to rule out erases everything quantity stays = 0 , name and age = by "empty" right there, but when I add again, the…
-
0
votes1
answer35
viewsQ: How I make a name that were created count 1
I am trying to add the names to count a number which have been created, under the title name this number 3 right ? I know number three is because I got the letter number. But how do I do it ?…
-
-3
votes1
answer109
viewsQ: Return an array of 6 random numbers between 01 and 60
I’m trying to create random numbers (01 to 60) with 6 digits const valor = n => { var add = 1, max = 12 - add; if ( n > max ) { return valor(max) + valor(n - max); } max = Math.pow(10, n+add);…
-
-1
votes2
answers142
viewsA: Javascript tabulated result inside a DIV
There’s another way to do it HTML <input class="form-control mb-3" type="number" name="num" id="nu1"> <input type="button" class="btn btn-dark p-2" value="Gerar tabuada"…