- Every variable is a property of an object
.
- Every object belongs to a class.
- Every class has a prototype.
- JavaScript has a "wrapper class" for every primitive
type.
- A method is a property whose value is a function.
|
- You can attach properties to a function.
- Within a method, this and callee
refer to the same object.
- When embedded in HTML, JavaScript is not case sensitive.
- Anonymous functions cannot be recursive.
- Functions may be declared within other functions.
|