Update h to H char according ASCII value
I have found that ASCII is not matching with char h so I have a changed. h = 104 H = 72
This commit is contained in:
parent
3dd8ca09c1
commit
cccfbd7c30
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ let blob = new Blob(["<html>…</html>"], {type: 'text/html'});
|
|||
|
||||
```js
|
||||
// create Blob from a typed array and strings
|
||||
let hello = new Uint8Array([72, 101, 108, 108, 111]); // "hello" in binary form
|
||||
let hello = new Uint8Array([72, 101, 108, 108, 111]); // "Hello" in binary form
|
||||
|
||||
let blob = new Blob([hello, ' ', 'world'], {type: 'text/plain'});
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue