We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d71b5c commit 3bc7e14Copy full SHA for 3bc7e14
page/javascript-101/arrays.md
@@ -113,7 +113,7 @@ var wholeArray = myArray.concat( myOtherArray );
113
var myArray = [ "hello", "world", "!" ];
114
115
console.log( myArray.join(" ") ); // "hello world !";
116
-console.log( myArray.join("") ); // "hello,world,!"
+console.log( myArray.join() ); // "hello,world,!"
117
console.log( myArray.join("") ); // "helloworld!"
118
console.log( myArray.join("!!") ); // "hello!!world!!!";
119
```
0 commit comments