Answers for "slice to the middle of an array js"

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 "slice to the middle of an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language