Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

reverse method

//The reverse() method reverses the elements in an array.
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.reverse();

//output >> ["Mango", "Apple", "Orange", "Banana"]

//if you find the answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
Comment

reverse method

const reverseString = (str) => {
 
const revArray = [];
const length = str.length - 1;
  
// Looping from the end
for(let i = length; i >= 0; i--) {
    revArray.push(str[i]);
}
  
// Joining the array elements
return revArray.join('');



}

//if you find this answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
Comment

Using the reverse method to Reverse an Array

var arr = [1,2,3,4];
arr.reverse();
console.log(arr);
Comment

reverse method

/*method to reverse a linked list */ 
reverse(list) {
            let current = list.head;
            let prev = null;
            let next = null;
            if (this.head) {
                //only one node
                if (!this.head.next) { return this; }
                while (current) {
                    next = current.next;//store next node of current before change
                    current.next = prev;//change next of current by reverse the link
                    prev = current;//move prev node forward
                    current = next;//move current node forward
                }
                list.head = prev
                return list
            }
            return "is empty"
        }
Comment

reverse () method to reverse the array

var arrayReverse = ["s", "o", "f", "t", "h", "u", "n", "t"]. reverse ();
["t", "n", "u", "h", "t", "f", "o", "s"]
Comment

reverse method

const reverseArray = (arr)=>{
   for (let v = arr.length ; v > 0 ; v--) {
       
    return arr[v];
       
   }
}

//if you find this answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
Comment

PREVIOUS NEXT
Code Example
Javascript :: npm react dropdown 
Javascript :: react-stripe-checkout 
Javascript :: how to link js and a html file in vscode 
Javascript :: tochararray in javascript 
Javascript :: js remove form object by key 
Javascript :: js jquery include external script 
Javascript :: hcaptcha bypass 
Javascript :: radio javascript checked 
Javascript :: react testing for links 
Javascript :: skip arguments in js 
Javascript :: check if a key exists in an object javascript 
Javascript :: siwtch case javascript 
Javascript :: get minutes and seconds of long seconds 
Javascript :: how to filter an array by list of objects in javascript 
Javascript :: web3 js get network 
Javascript :: iso 8601 date to Js date 
Javascript :: args slice discord.js 
Javascript :: github pages react route 
Javascript :: check if a word exists in dictionary javascript 
Javascript :: min and max javascript 
Javascript :: canvas rounded corners on image 
Javascript :: liquid object 
Javascript :: react native picker 
Javascript :: Error [DISALLOWED_INTENTS]: Privileged intent provided is not enabled or whitelisted. 
Javascript :: access variable from another function javascript 
Javascript :: how to go back one directory in git bash 
Javascript :: A bad HTTP response code (404) was received when fetching the script. 
Javascript :: javascript foreach url parameter 
Javascript :: log javascript 
Javascript :: bitfield permissions discord,.js 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =