Answers for "js string for loop"

9

javascript loop through string

for (var i = 0; i < str.length; i++) {
  console.log(str.charAt(i));
}
Posted by: Guest on June-01-2020
0

for loop js

let arr = [];
for(let i = 0; i <= 10; i++){
arr[i] = Math.round(Math.random() * 10);
}
•	Result: [3, 1, 1, 2, 3, 9, 5, 6, 6, 8, 5] 
•	                        Or
let arr = [];
for(let i = 0; i <= 10; i++){
arr[i] = Math.trunc(Math.random() * 10);
} 
Result[7, 6, 0, 2, 4, 8, 7, 5, 5, 6, 5]
Posted by: Guest on August-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language