Typo in sample code in Waypoint Update the Properties of JS Object #4438

removed extra comma
This commit is contained in:
alvynmcq 2015-11-14 22:33:37 +00:00
parent 33423358a4
commit 1c790d66be

View File

@ -743,7 +743,7 @@
"<code>var ourDog = {</code>",
"<code>&nbsp;&nbsp;\"name\": \"Camper\",</code>",
"<code>&nbsp;&nbsp;\"legs\": 4,</code>",
"<code>&nbsp;&nbsp;\"tails\": 1,</code>,",
"<code>&nbsp;&nbsp;\"tails\": 1,</code>",
"<code>&nbsp;&nbsp;\"friends\": [\"everything!\"]</code>",
"<code>};</code>",
"Since he's a particularly happy dog, let's change his name to \"Happy Camper\". Here's how we update his object's name property:",