OOP Flashcards
What is a method?
JavaScript methods are actions that can be performed on objects.
How can you tell the difference between a method definition and a method call?
a method definition is what it will do or can do and how
a method call is it actually doing what its supposed to
Describe method definition syntax (structure).
name then colon followed by function and params the opening code block braces then code then closing code block braces
Describe method call syntax (structure).
the object name followed by the method and parenthesis and arguments if any
How is a method different from any other function?
methods are defined in an object while functions are not
What is the defining characteristic of Object-Oriented Programming?
A feature of objects is that an object’s own procedures can access and often modify the data fields of itself (objects have a notion of this or self)
/can contain both data and methods(functionality)
What are the four “principles” of Object-Oriented Programming?
- Encapsulation
- Abstraction
- Inheritance
- Polymorphism
What is this in JavaScript?
implicit parameter of all JS functions / gives you the lexical scope of whatever it is in
What does it mean to say that this is an “implicit parameter”?
that it is available in a function’s code block even though it was never included in the function’s parameter list or declared with var.
When is the value of this determined in a function; call time or definition time?
the value of this is determined when the function is called
What does this refer to in the following code snippet? var character = { firstName: 'Mario', greet: function () { var message = 'It\'s-a-me, ' + this.firstName + '!'; console.log(message); } };
character
Given the above character object, what is the result of the following code snippet? Why?
character.greet();
‘It’s a me Mario! / this refers to character
Given the above character object, what is the result of the following code snippet? Why? var hello = character.greet; hello();
‘It’s a me undefined! / this is referring to the window
as hello is whats calling it
How can you tell what the value of this will be for a particular function or method definition?
depends on how its called. If its attached to an object then its the object. If not you cant really tell
How can you tell what the value of this is for a particular function or method call
Depends if it is attached to an object
What kind of inheritance does the JavaScript programming language use?
prototype-based (or prototypal) inheritance.
What is a prototype in JavaScript?
a JavaScript prototype is simply an object that contains properties and (predominantly) methods that can be used by other objects.
How is it possible to call methods on strings, arrays, and numbers even though those methods don’t actually exist on objects, arrays, and numbers?
they are inherited
If an object does not have it’s own property or method by a given key, where does JavaScript look for it?
in its prototype / looks in its prototype chain
What does the new operator do?
creates a new instance of a user defined object
1) Creates a blank, plain JavaScript object.
2) Adds a property to the new object (__proto__) that links to the constructor function’s prototype object
3) Binds the newly created object instance as the this context (i.e. all references to this in the constructor function now refer to the object created in the first step).
4) Returns this if the function doesn’t return an object.
What property of JavaScript functions can store shared behavior for instances created with new?
prototype
What does the instanceof operator do?
checks if one in item is an instance of another /
The instanceof operator tests to see if the prototype property of a constructor appears anywhere in the prototype chain of an object.
What is a “callback” function?
function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.
Besides adding an event listener callback function to an element or the document, what is one way to delay the execution of a JavaScript function until some point in the future?
setTimeout
How can you set up a function to be called repeatedly without using a loop?
SetInterval
What is the default time delay if you omit the delay parameter from setTimeout() or setInterval()?
0
What do setTimeout() and setInterval() return?
A timeOutID / intervalId