1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, localeTitle
| id | title | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| cf1111c1c11feddfaeb7bdef | Nest one Array within Another Array | 1 | Гнездо одного массива в другом массиве | 
Description
[["Bulls", 23], ["White Sox", 45]] . Это также называется многомерным массивом . Instructions
myArray . Tests
tests:
  - text: '<code>myArray</code> должен иметь по крайней мере один массив, вложенный в другой массив.'
    testString: 'assert(Array.isArray(myArray) && myArray.some(Array.isArray), "<code>myArray</code> should have at least one array nested within another array.");'
Challenge Seed
// Example
var ourArray = [["the universe", 42], ["everything", 101010]];
// Only change code below this line.
var myArray = [];
After Test
console.info('after the test');
Solution
// solution required