Horje
in compare method why we taking a and b for sorting in javascript Code Example
in compare method why we taking a and b for sorting in javascript
for compare and sort method:-
  
function compare(a,b) {
    return a - b;
}
------------------

var numbers = [1,5,3.14];
compare(1,5);     // Returns -4, a is less than b
compare(1,3.14);  // Return -2.14, a is less than b
compare(5,3.14);  // returns 1.86, a is greater than b




Javascript

Related
Uncaught TypeError: $.ajax is not a function Code Example Uncaught TypeError: $.ajax is not a function Code Example
jquery autocomplete bootstrap modal Code Example jquery autocomplete bootstrap modal Code Example
javascript save as pdf Code Example javascript save as pdf Code Example
get all global variables javascript Code Example get all global variables javascript Code Example
classic asp json multidemsion json Code Example classic asp json multidemsion json Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7