Variables, Scope, and Memory Flashcards
What are primitive values?
Simple atomic pieces of data
What are reference values?
Objects that may be made up of multiple values
What are the 5 primitive types?
Undefined, Null, Boolean, Number, String
What is an example of a reference type in JavaScript?
an Object. When you manipulate an object, you’re really working on a reference to that object rather than the actual object.
Can you add properties to primitive values?
No. Only to reference values.
What is the value of num2?
var num1 = 5; var num2 = num1; var num1 = 6;
5
When a reference value is assigned to a variable what is the actual value of the variable?
A pointer to an object stored on the heap
var obj1 = new Object(); var obj2 = obj1; obj1.name = "Scott"
What is the value of obj2.name?
“Scott”
What does passed by value mean?
a value is copied from one variable to another.
What does passed by reference mean?
the location of the value in the memory is passed from one variable to another (Objects)
How are function arguments passed in ECMAScript?
They are passed by value. Function arguments should be considered nothing more than local variables within functions.
What is the instanceof operator used for and what does the syntax look like?
it is used to determine what type of object an object is.
result = variable instanceof constructor
What does this return?
person instanceof Object
true (if person is an object.)
typeof(obj) => true
If you want more information about this object what operator can you use?
obj instanceof Object => true
obj instanceof Array => false
What is the global execution context?
The outermost context. It changes depending on the host environment but in web browsers the global context is the window object.
What is a variable object?
Each execution context has an associated variable context upon which all of its defined variables and functions exist.
What is the purpose of a scope chain?
to provide ordered access to all variables and functions that an execution context has access to.
What is the front of the scope chain?
the variable object of the context whose code is executing. If the context is a function, then the activation object is used as the variable object.
What does an activation object start with?
a single defined variable called arguments. (this doesn’t exist in global context)
Do function arguments follow the same access rules as other variables in the execution context?
Yes, function arguments are considered to be variables.
What are the two primary types of executions contexts?
global and function
which two statements can cause a temporary addition to the front of the scope chain that is later removed after code execution?
- The catch block in a try-catch statement
2. A with statement
Are there block-level scopes in JavaScript?
No.
When a variable is declared using var, what context is it added to?
The most immediate context
If a variable is initiated without first being declared what context does it get added to?
The global context
Is it faster to access local variables or global variables?
Local variables because there’s no need to search up the scope chain.
What is a garbage collection language?
The execution environment is responsible for managing the memory required during code execution.
What is mark-and-sweep?
The most popular form of garbage collection. When a variable goes in context it’s flagged as in context. When a variable goes out of context it’s flagged as out of context.
When the garbage collector runs it marks all variables stored in memory, then it clears the marks off of variables that are in context and variables referenced by in context variables. The garbage collector then does a memory sweep destroying each of the marked values and reclaiming the memory.
What is reference counting?
A type of garbage collection. The idea is that every value keeps track of how many references are made to it. When the count goes to zero its safe to reclaim the associated memory.
What is a circular reference?
When object A has a pointer to object B and object B has a reference to object A.
Why should you break the connection between native javascript objects and DOM elements?
myObject.element = null; element.someObject = null;
To avoid circular reference problems.
Where are primitive values stored?
They are a fixed size so they are stored in memory on the stack
Where are reference values stored?
Reference values are objects and are stored in memory on the heap.
What should you do with global variables to help with memory reclamation?
They should be dereferenced when they are no longer needed.