Answers for "js access array in array"

0

js access array in array

let nestedArray = [
	[
		"salmon",
		"halibut",
	],
	[
		"coral",
		"reef",
	]
];

nestedArray[1][0];//just add another index number
Posted by: Guest on April-22-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language