Allude to 'this' keyword as suggested by @ParkinT

@ParkinT suggested the ```this``` keyword be alluded to in the lesson.
Closes #3899
pull/3978/head
Aryan Jabbari 2015-10-28 23:55:38 -04:00
parent b2dbe08f7e
commit 71435e6b7e
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@
"<code>&thinsp;&thinsp;this.engines = 1;</code>",
"<code>&thinsp;&thinsp;this.seats = 1;</code>",
"<code>};</code>",
"Give your <code>myMotorBike</code> object a <code>wheels</code>, <code>engines</code> and <code>seats</code> attribute and set them to numbers."
"Give your <code>myMotorBike</code> object a <code>wheels</code>, <code>engines</code> and <code>seats</code> attribute and set them to numbers.",
"You may be confused by the <code>this</code> keyword here. Don't worry, we will get to that very soon."
],
"tests":[
"assert(typeof((new MotorBike()).engines) === 'number', 'message: <code>myMotorBike</code> should have a <code>engines</code> attribute set to a number.');",