Answers for "JS get 2d array row count"

0

JS get 2d array row count

var air = [
	['dragonfly', 'crane fly'],
	['eagle', 'falcon'],
	['jumbo jet','harrier'],
	['mosquito', 'wasp']
];

alert(air.length); // 4
Posted by: Guest on March-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language