Skip to content

Commit e060ee7

Browse files
authored
Update solution.js
1 parent 36e0011 commit e060ee7

File tree

1 file changed

+1
-1
lines changed
  • 4-binary/01-arraybuffer-binary-arrays/01-concat/_js.view

1 file changed

+1
-1
lines changed

4-binary/01-arraybuffer-binary-arrays/01-concat/_js.view/solution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function concat(arrays) {
77
let result = new Uint8Array(totalLength);
88

99
// para cada array: copiarlo sobre "result"
10-
// el siguiente array es copiado justo después del anterior
10+
// el siguiente array es copiado inmediatamente después del anterior
1111
let length = 0;
1212
for(let array of arrays) {
1313
result.set(array, length);

0 commit comments

Comments
 (0)