Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#4206 from SaintPeter/fix/join-strings…
Browse files Browse the repository at this point in the history
…-join-typo-4196

Fixes typo in Join Strings with Join Waypoint
  • Loading branch information
ltegman committed Nov 6, 2015
2 parents c855e01 + deb9bce commit 65bf2e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
"title":"Join Strings with .join",
"description":[
"We can use the <code>join</code> method to join each element of an array into a string separated by whatever delimiter you provide as an argument.",
"The following is an example of using <code>join</code> to join all of the elements of an array into a string with all the elements seperated by word `Na`:",
"The following is an example of using <code>join</code> to join all of the elements of an array into a string with all the elements separated by word `Na`:",
"<code>var joinMe = [\"Na \", \"Na \", \"Na \", \"Na \", \"Batman!\"];</code>",
"<code>var joinedString = joinMe.join(\"Na \");</code>",
"<code>console.log(joinedString);</code>",
Expand Down

0 comments on commit 65bf2e0

Please sign in to comment.