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