Skip to content

Commit d1ad112

Browse files
authored
More README.md tweaks.
1 parent fac32f8 commit d1ad112

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ Although the `tuple` function can be invoked using `new tuple(...)` syntax, usin
4949

5050
### Own `tuple` properties
5151

52-
The `tuple` object has a fixed numeric `.length` property, and its elements may be accessed using array index notation:
52+
The `tuple` object has a fixed numeric `length` property, and its elements may be accessed using array index notation:
5353

5454
```js
5555
assert.strictEqual(t1.length, 3);
56+
5657
t1.forEach((x, i) => {
5758
assert.strictEqual(x, t2[i]);
5859
});

0 commit comments

Comments
 (0)