Context page
What is "this"? Learn about context and build your very own .
operator!
Overview
- Rules for setting context
- proto & prototype: A visual representation
- Exercise!
Video
Slides
Exercise: DOT operator
The problem
Write the DOT (.
) operator as if it was implemented in JS as a function.
For example, the following uses the DOT
operator to read properties from person
:
To solve this problem, DOT should read from the proto chain. While it can be implemented as simple as the following:
You should instead only use the []
property accessor when you know the object has
that direct property.
To get started, click the button at the bottom of the following:
What you need to know
- The
DOT
function will take an object and a property name as a string. - hasOwnProperty returns if an object has a direct property:
- Object.getPrototypeOf(obj) returns the
__proto__
value of the passed obj. This is the recommended way of reading the__proto__
property.
- Recursive functions call themselves to answer a sub-problem:
The solution
Exercise: DOTCALL operator
The problem
Write the dot (.
) [[call]]
operator as if it was implemented in JS.
For example, instead of calling person.speak("Hi")
, we will call it as
DOTCALL(person,"speak",["Hi"])
as follows:
DOTCALL( obj, prop, args )
will take:
- obj - the context of the function to call.
- prop - the property name to lookup.
- args - an array of arguments to pass to the function.
To get started, click the Run in your browser button at the bottom of the following code sample:
What you need to know
- Use apply to
call a function (also constructor functions) with a
this
value and an array of arguments. - If the call operator (
()
) is used on a value that is not a function, an error is thrown. For this example, throw: whereprop
is the name of the property that is being called.