Skip to content

Instantly share code, notes, and snippets.

@teffcode
Created February 21, 2021 23:16
Show Gist options
  • Save teffcode/37fc3b47aeb4862941d5bb9104e70c57 to your computer and use it in GitHub Desktop.
Save teffcode/37fc3b47aeb4862941d5bb9104e70c57 to your computer and use it in GitHub Desktop.

馃憢馃徏 Welcome 馃憢馃徏

Quiz banner

Instagram | Twitter | LinkedIn


Choose your language 馃憛



English version 馃殌


What is the output of the following code: A, B or C?


Click here to see the correct answer and explanation 馃憖
Correct Answer Explanation
B The sort() method sorts the elements of an array in place and returns the sorted array. The default sort order is ascending, built upon converting the elements into strings, then comparing their sequences of UTF-16 code units values. For our case, note that 10 is before 2 in the result array, because 10 is before 2 depending on the position of the Unicode value.

Explanation based on 馃憠馃徏 Array.prototype.sort() | MDN


Code:

(function() {
  const numbers = [1, 10, 2, 21];
  numbers.sort();
  console.log(numbers);
})();


Spanish version 馃殌


驴Qu茅 imprime el siguiente c贸digo: A, B o C?


Haz click aqu铆 para ver la respuesta correcta y su explicaci贸n 馃憖
Respuesta correcta Explicaci贸n
B El m茅todo sort() ordena los elementos de un arreglo (array) localmente y devuelve el arreglo ordenado. La ordenaci贸n no es necesariamente estable. El modo de ordenaci贸n por defecto responde a la posici贸n del valor del string de acuerdo a su valor Unicode. Para nuestro caso, ten en cuenta que 10 est谩 antes que 2 en el array resultante, porque 10 est谩 antes que 2 seg煤n la posici贸n del valor Unicode.

Explicaci贸n basada en 馃憠馃徏 Array.prototype.sort() | MDN


C贸digo:

(function() {
  const numbers = [1, 10, 2, 21];
  numbers.sort();
  console.log(numbers);
})();


@rancesmpm
Copy link

B

@leonelrr12
Copy link

B

@xsrpm
Copy link

xsrpm commented Oct 22, 2021

La b. Por default va en contra de lo natural que uno esperar铆a. Pero asi funciona el sort en javacript.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment