Posts by ulima69 • 181 points
3 posts
-
6
votes3
answers5107
viewsQ: Working days and Java 8 API, how to check?
How do I verify that a day is useful using the Java 8 API? It is possible to check whether it is Saturday or Sunday, but how to check for example holiday like September 7 (Independence of Brazil) or…
-
1
votes2
answers773
viewsA: using java class from another directory
When you try to compile, the error arises because the class Funcionario.java has not yet been compiled, or if it has already been is not in the same folder or on classpath for compilation of the…
-
-1
votes4
answers2906
viewsA: How to get the highest value in an array with Javascript?
The Math.max function already returns the largest between two: Math.max(10, 20); // 20 Math.max(-10, -20); // -10 Math.max(-10, 20); // 20 With reduce vc could use an array: var arr = [1, 2, 3]; var…
javascriptanswered ulima69 181