diff --git a/14 - JavaScript References VS Copying/index-FINISHED.html b/14 - JavaScript References VS Copying/index-FINISHED.html index be6d1b7646..e6de86456b 100644 --- a/14 - JavaScript References VS Copying/index-FINISHED.html +++ b/14 - JavaScript References VS Copying/index-FINISHED.html @@ -41,7 +41,7 @@ // So, how do we fix this? We take a copy instead! const team2 = players.slice(); - // one day + // one way // or create a new array and concat the old one in const team3 = [].concat(players);