Browse Source

doc: var => const/let in the buffer.md

PR-URL: https://github.com/nodejs/node/pull/9795
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
v6
Vse Mozhet Byt 8 years ago
committed by Anna Henningsen
parent
commit
69a34e4a07
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 20
      doc/api/buffer.md

20
doc/api/buffer.md

@ -1,4 +1,4 @@
# Buffer
# Buffer
> Stability: 2 - Stable
@ -282,7 +282,7 @@ const buf = Buffer.from([1, 2, 3]);
// 1
// 2
// 3
for (var b of buf) {
for (const b of buf) {
console.log(b);
}
```
@ -995,7 +995,7 @@ overlapping region within the same `Buffer`
```js
const buf = Buffer.allocUnsafe(26);
for (var i = 0 ; i < 26 ; i++) {
for (let i = 0 ; i < 26 ; i++) {
// 97 is the decimal ASCII value for 'a'
buf[i] = i + 97;
}
@ -1028,7 +1028,7 @@ const buf = Buffer.from('buffer');
// [3, 102]
// [4, 101]
// [5, 114]
for (var pair of buf.entries()) {
for (const pair of buf.entries()) {
console.log(pair);
}
```
@ -1212,7 +1212,7 @@ const buf = Buffer.from('buffer');
// 3
// 4
// 5
for (var key of buf.keys()) {
for (const key of buf.keys()) {
console.log(key);
}
```
@ -1302,7 +1302,7 @@ use [`buf.slice()`] to create a new `Buffer`.
Examples:
```js
var buf = Buffer.allocUnsafe(10);
let buf = Buffer.allocUnsafe(10);
buf.write('abcdefghj', 0, 'ascii');
@ -1673,7 +1673,7 @@ one byte from the original `Buffer`
```js
const buf1 = Buffer.allocUnsafe(26);
for (var i = 0 ; i < 26 ; i++) {
for (let i = 0 ; i < 26 ; i++) {
// 97 is the decimal ASCII value for 'a'
buf1[i] = i + 97;
}
@ -1822,7 +1822,7 @@ Examples:
```js
const buf1 = Buffer.allocUnsafe(26);
for (var i = 0 ; i < 26 ; i++) {
for (let i = 0 ; i < 26 ; i++) {
// 97 is the decimal ASCII value for 'a'
buf1[i] = i + 97;
}
@ -1897,7 +1897,7 @@ const buf = Buffer.from('buffer');
// 102
// 101
// 114
for (var value of buf.values()) {
for (const value of buf.values()) {
console.log(value);
}
@ -1908,7 +1908,7 @@ for (var value of buf.values()) {
// 102
// 101
// 114
for (var value of buf) {
for (const value of buf) {
console.log(value);
}
```

Loading…
Cancel
Save