Posts by Bruno de Moraes • 43 points
3 posts
-
0
votes5
answers3336
viewsA: How to mix an array in Javascript?
Talk, guys, I wanted to share with you one of the infinite solutions =) function shuffleArray(array = ["banana", "ovo", "salsicha", "goiaba", "chocolate"]) { const newArray = []; let number =…
-
1
votes1
answer19
viewsQ: How to do first system installation check on a server
When installing Wordpress for the first time on the localhost/server it presents forms and a step by step registration of a first user the administrator. I would like to understand how I do such a…
wordpressasked Bruno de Moraes 43 -
2
votes1
answer183
viewsQ: Selection Sort - Is that correct?
I implemented a logic of Selection Sort and would like to ask if it is correct. Because at the end of the process the result is expected, but went to make a real proof and found several algorithms…