Posts by rd_1999 • 9 points
2 posts
-
-1
votes0
answers28
viewsQ: Traverse Array Beyond Length
I have the following array: const array = ["A", "A#", "B", "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#"] The array has 12 positions, I need that from the "A", can go through and go "beyond", for…
javascriptasked rd_1999 9 -
-1
votes1
answer47
viewsQ: Doubt of beginner in javascript
I have a question and code follows below: var j = 1928182; while (j > 50) { console.log(j); j /= 5; } As the code says, while j is greater than 50, it will divide by 5, right? Why if you put the…
javascriptasked rd_1999 9