nested for loop javascript
// Basic Javascript Nested Loop / 2D Array
for (var x = 0; x < 10; x++) {
for (var y = 0; y < 10; y++) {
console.log("x: " + x + ", y: " + y);
}
} var arr = [[1,2], [3,4], [5,6]];
for (var i=0; i < arr.length; i++) {
for (var j=0; j < arr[i].length; j++) {
console.log(arr[i][j]);
}
}for (let exercise = 1; exercise <= 3; exercise++) {
console.log(`---------- Starting exercise ${exercise}`)
for (let rep = 1; rep <= 6; rep++) {
console.log(`Exercise ${exercise}: Lifting weight repetitition ${rep}`);
}
}function multiplyAll(arr) {
var product = 1;
// Only change code below this line
for (var i=0; i<arr.length; i++ ){
for (var j=0; j<arr[i].length; j++){
product*=arr[j];
}
}
// Only change code above this line
return product;
}
// Modify values below to test your code
multiplyAll([[1,2],[3,4],[5,6,7]]);
Also in JavaScript:
- socket io get user rooms
- javascript leave page warning
- Como saber se existe um atributo em um objeto
- how to reload a page in javascript
- angular 8 to 9
- javascript set and get cookie
- how can when click buton scrool to another elemtn
- import React, { memo } from 'react';
- how to remove a value from an array and return the new array in javascript
- (node:2496) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead.
- ajax .put
- what is nodes and hubs in selenium grid
- create app react js
- react not recognizing lorem
- angular absolute routerlink
- input show validation message
- login condition if and else in router dom of react jsx
- react nativ export default
- add two numbers javascript
- how to get code suggestions for react components
- async map js
- comment obtenir l'élément parent javascript
- javascript base64 encode string
- jquery remove elemtns