We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a18ec commit 98792e2Copy full SHA for 98792e2
chapters/arrays/concatenating-arrays.md
@@ -14,7 +14,7 @@ Use JavaScript's Array concat() method:
14
{% highlight coffeescript %}
15
ray1 = [1,2,3]
16
ray2 = [4,5,6]
17
-ray3 = ray1.concat(ray2)
+ray3 = ray1.concat ray2
18
# => [1, 2, 3, 4, 5, 6]
19
{% endhighlight %}
20
0 commit comments