How to reverse a array? How to reverse a array in javascript? - letsbug

    Hey everyone in this article we're going to see how we can reverse a array. In this article I am using javascript but it's not important. You can use any language you want only thing which is important is the logic behind it. You understand the logic means you can do or implement this in any language.

    In the below code I start by first creating a arr variable and add random 10 numbers as the elements in the array. Actual reversing of the array happens in the reverseArray(array, n) function.

    In the function we first create a variable and initialize it to a array to store the reversed array. The we loop the original array backwards starting from the last element to the first element. While passing through each element we push that element to the start of our reverserdArray variable. After the loop terminates we have the reversed version of original array returned from the function.

    After that we can call the function and check the console to see the output. That's it.

Below is the code in javascript.

/** Reversing Array in Javascript */
let arr = []
for(let i = 0; i < 10; i++){
    arr.push(Math.ceil(Math.random(1,10) * 10))
}
console.log(arr)

function reverseArray(array, n){
    let reversedArray = []
    for(let i = n - 1; i >= 0; i--){
        reversedArray.push(array[i])
    }
    return reversedArray
}

console.log(reverseArray(arr, arr.length))

ThankYou:)

Comments

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug