Level 89 Level 91
Level 90

[No Typing] This Keyword


6 words 0 ignored

Ready to learn       Ready to review

Ignore words

Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.

All None

Ignore?
this
the object that "owns" the JavaScript code
objectName.property; objectName["property"];
Accessing JavaScript Properties
delete objectName.property;
Deleting Properties
objectName.methodName()
Accessing Object Methods
Object.prototype
All JavaScript objects inherit their properties and methods from their prototype
function prototypeName(arguments) { this.property = value; }
Creating a Prototype with an object constructor function