Posts by Wellington Messias • 36 points
2 posts
-
0
votes4
answers127
viewsA: Javascript Concatenation between Arrays
You could do so too: const arr = ["Cafe", "feijao", "frango", "batata", "pao", "miojo", "laranja", "mouse", "teclado", "ovo"]; const max = 3; let mistura = []; let temp = ''; const chegouNoLimite =…
javascriptanswered Wellington Messias 36 -
2
votes1
answer50
viewsA: Problem with Like for Criteria
try like this: crit.add(Restrictions.ge("this.dataCompraInfra", sDate)); crit.add(Restrictions.lt("this.dataCompraInfra", fDate)); where sDate is a Date with value 1/1/2011 and fDate is a Date with…