How can I reverse an array in JavaScript without using libraries?

前端 未结 30 1261

I am saving some data in order using arrays, and I want to add a function that the user can reverse the list. I can\'t think of any possible method, so if anybo

30条回答
  •  半阙折子戏
    2020-11-27 06:12

    Below is a solution with best space and time complexity

    function reverse(arr){
    let i = 0;
    let j = arr.length-1; 
    while(i

    output => [9,8,7,6,5,4,3,2,1]

提交回复
热议问题