Skip to content

Commit f32118c

Browse files
Update xmlhttprequest.md
1 parent 391c543 commit f32118c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/bom/xmlhttprequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ xhr.responseType = 'arraybuffer';
181181

182182
xhr.onload = function(e) {
183183
var uInt8Array = new Uint8Array(this.response);
184-
for (var i = 0, len = binStr.length; i < len; ++i) {
184+
for (var i = 0, len = uInt8Array.length; i < len; ++i) {
185185
// var byte = uInt8Array[i];
186186
}
187187
};

0 commit comments

Comments
 (0)