Posts by victor_bez • 19 points
5 posts
-
0
votes1
answer291
viewsA: How to make a script in the Pug engine
I found the solution, the problem was really the word "Function" that was wrong, thank you very much for the attention, follow the correct code: html head title= message…
-
-1
votes1
answer291
viewsQ: How to make a script in the Pug engine
I’m trying to make a script that contains a function in the Pug engine, but I can’t get it called when the user sends the form, can anyone help me? Follows the code: html head title= message script.…
-
0
votes2
answers2968
viewsQ: Store Promise output in a variable
How can I store the result of Promise in a variable? Promise returns the result of a database query. function consultaMarcas(){ return new Promise(function(resolve, reject) {…
-
0
votes1
answer29
viewsQ: Server to store data
I have a question, I wanted to develop a small program and I wanted the program to have a database. I started the program and wanted the database to boot without me opening the xampp for example.…
databaseasked victor_bez 19 -
0
votes6
answers8998
viewsA: Sum of multiples of 3 or 5
public class somaMultiplos { public static void main(String[] args) { int numeroTres = 3; int numeroCinco = 5; int somaMultiploTres = 0; int somaMultiploCinco = 0; …
javaanswered victor_bez 19