Chapter 7 Flashcards
T/F You can use the Math object directly in your programs without instantiating a new object
true
The code new Date() creates an empty Date object
false
You can create an empty object by assigning a pair of empty braces to a variable name
true
The value of an object property can be another object
true
The code for a method must be stored in an external function
false
Objects are also called BLANK
components
The term BLANK refers to information contained within variables or other types of storage structures
data
The code (method and statements) and data (variables and constants) contained in an encapsulated object are accessed through a(n) BLANK
interface
A(n) BLANK is an object that has been created from an existing class
instance?
BLANK refers to cleaning up, or reclaiming, memory that is reserved by a program
???
The BLANK class contains methods and properties for manipulating the date and time
Time ??
The BLANK class contains methods for manipulating numbers and properties that contain static values representing some of the numeric limitations in the JavaScript language
Number ??
The BLANK class contains methods and properties for mathematical calculation in your programs
Math
A(n) BLANK function is a function that is used as the basis for a custom object
constructor
To execute the same statement or command block for all the properties within a custom object, you can use the BLANK statemetn
???