Posts by Bruno Felix • 1 point
2 posts
-
-1
votes1
answer55
viewsA: Error adding to a List in JAVA
Try using this example to get where you want, in solving your add problem in the list: import java.util.ArrayList; import java.util.List; public class ListAddExamples { public static void…
-
0
votes2
answers10703
viewsA: Dynamic fields mask for Javascript phone
Image format: (88) 9 9999-9999. function phoneMask(v) { let r = v.replace(/\D/g, ""); r = r.replace(/^0/, ""); if (r.length > 11) { r = r.replace(/^(\d\d)(\d{5})(\d{4}).*/, "($1) $2-$3"); } else…
javascriptanswered Bruno Felix 1