Skip to content

Commit 440b7cf

Browse files
pin-ting-codescottgonzalez
authored andcommitted
Arrays: Changed e.g. to i.e.
1 parent 45a34b5 commit 440b7cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/javascript-101/arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ var wholeArray = myArray.concat( myOtherArray ); // [ 2, 3, 4, 5, 6, 7 ]
115115

116116
### .join()
117117

118-
`.join()` creates a string representation of an array by joining all of its elements using a separator string. If no separator is supplied (e.g. `.join()` is called without arguments) the array will be joined using a comma.
118+
`.join()` creates a string representation of an array by joining all of its elements using a separator string. If no separator is supplied (i.e., `.join()` is called without arguments) the array will be joined using a comma.
119119

120120
```
121121
// Joining elements

0 commit comments

Comments
 (0)