We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e0011 commit e060ee7Copy full SHA for e060ee7
4-binary/01-arraybuffer-binary-arrays/01-concat/_js.view/solution.js
@@ -7,7 +7,7 @@ function concat(arrays) {
7
let result = new Uint8Array(totalLength);
8
9
// para cada array: copiarlo sobre "result"
10
- // el siguiente array es copiado justo después del anterior
+ // el siguiente array es copiado inmediatamente después del anterior
11
let length = 0;
12
for(let array of arrays) {
13
result.set(array, length);
0 commit comments