Posts by Hítalo Silva • 11 points
2 posts
-
1
votes4
answers1061
viewsA: How to take the units of a two-digit number
Divide by 10 and take the rest of the division. $num = 25; $unidades = 25 % 10; // retorna 5
phpanswered Hítalo Silva 11 -
0
votes2
answers639
viewsA: Password authentication Nodejs
The statement should be: UsuarioSchema.statics.verificaSenha = function (password, cb){ …
node.jsanswered Hítalo Silva 11