Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to move all negative elements to the end of array in JavaScript

2 Answers

0 votes
function move_negative_to_end(arr) { 
    const size = arr.length;
    let temp = [];
 
    let j = 0; 
    for (let i = 0; i < size ; i++) 
        if (arr[i] >= 0 ) 
            temp[j++] = arr[i]; 
   
    if (j == size || j == 0) 
        return; 
   
    for (let i = 0 ; i < size ; i++) 
        if (arr[i] < 0) 
            temp[j++] = arr[i]; 
 
    for (let i = 0; i < size; i++) 
       arr[i] = temp[i];
} 


const arr = [-1, 8, -21, -3, -2, 7, 15, -30, -40, 4, 6, 9];
   
move_negative_to_end(arr); 
 
console.log(arr);




/*
run:

[8, 7, 15, 4, 6, 9, -1, -21, -3, -2, -30, -40]

*/

 



answered Nov 4, 2021 by avibootz
edited Nov 27, 2021 by avibootz
0 votes
function move_negative_to_end(arr) { 
    const size = arr.length;
    
    let j = 0;
    for (let i = 0; i < size; i++) {
        if (arr[i] >= 0) {
           let tmp = arr[i];
           arr[i] = arr[j];
           arr[j] = tmp;
           j++;
        }
    }
} 


const arr = [-1, 8, -21, -3, -2, 7, 15, -30, -40, 4, 6, 9];
   
move_negative_to_end(arr); 
 
console.log(arr);




/*
run:

[8, 7, 15, 4, 6, 9, -21, -30, -40, -3, -2, -1]

*/

 



answered Nov 4, 2021 by avibootz
edited Nov 27, 2021 by avibootz

Related questions

1 answer 128 views
2 answers 155 views
2 answers 151 views
2 answers 134 views
2 answers 139 views
2 answers 150 views
...