Instagram | Twitter | LinkedIn
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);
})();
驴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);
})();
B