Answers for "array of numbers get the middle value"

3

javascript middle of array

var arr = [1,2,3,4,5];

return arr[Math.floor(arr.length/2)];
Posted by: Guest on June-18-2020

Code answers related to "array of numbers get the middle value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language