Reference Types Flashcards
What are reference types?
Structures used to group data and functionality together
What is a reference value an instance of?
A specific reference type
Are there classes in JavaScript?
No. JacaScript does not support classss.
What is another name for reference types?
Object definitions
What is a constructor?
A simple function who’s purpose is to create an object.
What are objects an instance of?
A particular reference type.
What are two ways to create an instance of the Object type?
1. The new operator: var person = new Object();
2. Object literal notation: var person = {};
What is an expression context in ECMAScript?
A context in which a value (expression) is expected
How can you define an object so the Object constructor is never called?
An object defined via object literal notation never calls the Object constructor.
What type of data can an array hold?
Arrays can hold any type of data in each slot.
How are arrays sized?
Arrays are dynamically sized, automatically growing to accommodate any data that is added to them.
What two ways can arrays be created?
Using the array constructor: var colors = new Array();
Using array literal notation: var colors = [];
How can you initialize an Array if you know the amount of items that will be in the array?
var colors = new Array(20);
This will create an array with an initial length of 20.
When an array is created using array literal notation is the Array constructor called?
No.
What happens in this example: var colors = ["red", "blue"]; colors[2] = "green";
The array length is automatically expanded to be that index plus 1
Where is the number of items of an array stored?
In the length property, which always returns 0 or more.
What happens in the following example? var colors = ["red", "blue", "green"]; colors.length = 1;
The last item is removed from the array. The length property is not read only.
How can you add an element to the end of an array using the length property?
colors[colors.length] = “black”
What is the maximum amount of items an array can contain?
4,294,967,295 items.
If you try to add more an exception occurs.
What are two ways you can detect if a given object is an array?
The instanceof operator and the Array.isArray() method.
Use isArray if there are multiple global contexts
When should you use Array.isArray();?
When detecting if an object is an array and dealing with multiple global scopes.
How can you get a comma-separated string of all of the items within a given array?
colors. toString();
colors. valueOf();