Instagram | Twitter | LinkedIn
What is the output of the following code ?
A | B | C |
---|---|---|
馃憖 Click here to see the correct answer and explanation
Correct Answer | Explanation |
---|---|
C | The slice() method copies a given part of an array and returns that copied part as a new array. It doesn鈥檛 change the original array. The syntax is array.slice(from, until); where from is slice the array starting from an element index (2 in this case) and until is slice the array until another element index (4 in this case). However, the slice() method doesn鈥檛 include the last given element. For this reason, "馃И" (index 4) element is not included in the new array. |
Explanation based on 馃憠馃徏 Let鈥檚 clear up the confusion around the slice( ), splice( ), & split( ) methods in JavaScript
驴 Qu茅 imprime el siguiente c贸digo ?
A | B | C |
---|---|---|
馃憖 Haz click aqu铆 para ver la respuesta correcta y su explicaci贸n
Respuesta correcta | Explicaci贸n |
---|---|
C | El m茅todo slice() copia una parte determinada de un array y devuelve esa parte copiada como un nuevo array. No cambia la matriz original. La sintaxis es array.slice(from, until); donde from es cortar el array a partir del 铆ndice de un elemento dado (2 en este caso) y until es cortar el array hasta otro 铆ndice dado (4 en este caso). Sin embargo, el m茅todo slice() no incluye el 煤ltimo elemento. Por esta raz贸n, el elemento "馃И" (con 铆ndice 4) no se incluye en el nuevo array. |
Explicaci贸n basada en 馃憠馃徏 Let鈥檚 clear up the confusion around the slice( ), splice( ), & split( ) methods in JavaScript