OOP_RSE_Javascript Flashcards
Learn advanced JavaScript
What kind of JavaScript OOP inheritance applies to the ES6 classes?
Prototypal inheritance
ES6 classes»_space;> can they be defined by declaring them or by using an expression?
They can be defined by both: Declaration: class Bird{...} Expression: a. unnamed class expression: let animal = class { ... }; b. named class expression: let animal = class Animal{...};
How do you access a class’ name ?
If you use a named class expression, the “name” attribute will become a property on the class’s body and can be accessed using “.name”
What happens if you declare multiple constructors in an ES6 class?
There is only one constructor in a class, so you will get an “Syntax Error” error
How do you use the “super” keyword in an ES6 class?
The super keyword can be used within an object’s constructor to call the constructor of its superclass.
What is the difference in defining ES5 vs ES6 prototype methods in a class?
In ES5, you had to use the "prototype" keyword: Animal.prototype.bite(...){...}' In ES6: class { ...... bite( ) { ....} }
What kind of methods can you declare in an ES6 class?
Prototypal and static
What happens if you try to access a static class method from an instance in ES6?
TypeError: “yourStaticMethod” is not a function
What happens if you redeclare a class in ES6?
Syntax Error: identifier “myClass” already declared
What do you have to do in an ES6 inherited class before you use “this”?
You have to use “super()”;
What kind of property is the “prototype” property for a JavaScript object?
It is a private property
How do you create privacy in object literals?
By using IIFEs. for ex.: var myObj = (function( ) { var ... } ( ) );
How do you create privacy in object literals?
By using IIFEs. for ex.: var myObj = (function( ) { var ...; myObj = { } ( ) );
How do you declare private vars in a class?
You declare them with “var myVar = …” in the constructor; the ones declared with this.myVar will become public
Can you access private class’s vars from the Object’s own public methods? if yes, how, if no, how do you still access them?
No, you cannot access private vars from an object’s public methods. You can access the private vars from the objects’s private methods though.
How do you define private methods in JavaScript?
By declaring the corresponding functions inside the constructor
How do you make the object available to the private methods inside the object? Why is it that you have to use that way?
By using: “var that = this” inside the constructor. Because Crockford’s pattern, “this” will point to global inside inner private functions in an object.
Can you call private methods from public methods in an ES6 class?
No
How do you define privileged methods in ES6 and what are they?
use “this.myMethod” inside the constructor to define a privileged method; they are used to access the private methods from the outside of the object
Are the privileged methods visible to the public methods inside an ES6 class?
Yes
In an object literal: var jane = {name: "Jane", describe: function(){console.log(this)}, what is the "this" in the describe function pointing to?
is pointing to the actual object
Can you delete an inherited property in an Object?
No
Can an ES6 class’s body include data properties?
No, as the class’s body is actually the prototype, so prototypes having data properties are an anti-pattern
Can an ES6 class’s body include data properties?
No, as the class’s body is actually the prototype, so prototypes having data properties are an anti-pattern
A class’s body can only contain methods!!!
What is the boolean’s value of the following statement and why?
Foo === Foo.prototype.constructor
True, because the Foo.prototype.constructor points back to the Foo function
In how many ways can super( ) can be used in a class?
Method definitions (in object literals or classes, with or without static) use it like property references (super.prop) or method calls (super.method(···)), in order to refer to super-properties (line B).
Does an inherited class actually inherit the static properties/methods of the parent class?
yes. As an example: class Foo { static classMethod() { return 'hello'; } }
class Bar extends Foo { } Bar.classMethod(); // 'hello'
When is it NOT necessary to call super( ) in a class constructor?
When you override the constructor result: class Foo { constructor() { return Object.create(null); } } console.log(new Foo() instanceof Foo); // false
What happens if you do not specify a constructor in ES6 classes?
It will use a default constructor:
constructor( ) { }
What is the default constructor for the derived classes?
constructor(…args){
super(…args);
}
How can you define you own error class in ES6?
class MyError extends Error{ }; throw new MyError.
How do you define prototype methods in ES6 classes?
Just define a function inside the class, but outside the constructor:
class C { m() {} }
Can you use prototype methods as constructors in ES6?
No; class C { m() {} } let a = new C.prototype.m(); // TypeError
How are static methods in an ES6 class (in terms of enumerability, writability, configurability)?
Static methods Foo.* are writable and configurable, but not enumerable.
How is the prototype of an ES6 class (in terms of enumerability, writability, configurability)?
Foo.prototype is non-writeable, non-enumerable, non-configurable.
How is the constructor of an ES6 class (in terms of enumerability, writability, configurability)?
Foo.prototype.constructor is non-writeable, non-enumerable, non-configurable.
How are the prototype methods in an ES6 class (in terms of enumerability, writability, configurability)?
Prototype methods Foo.prototype.* are writable and configurable, but not enumerable.
What is the prototype of a base class?
Function.prototype
When is the instance object created in ES5vs ES6?
The instance object is created in different locations in ES6 and ES5:
In ES6, it is created in the base constructor, the last in a chain of constructor calls.
In ES5, it is created in the operand of new, the first in a chain of constructor calls.
Can you call super( ) twice in a derived class constructor?
No.
Once this is initialized, calling super() produces a ReferenceError. This protects you against calling super() twice.
What is the return value of a constructor if it doesn’t have a “return” statement?
If a constructor returns implicitly (without a return statement), the result is “this”
When do I have to initialize “this” in a constructor that returns an object?
If a constructor explicitly returns an object, it is used as its result. Then it doesn’t matter whether this is initialized or not.
Can you subclass built-in constructors in ES5? What about ES6?
Not in ES5, yes in ES6.
How do you create a non-deletable object property?
Object.defineProperty(obj, “myProp”) ,{
value: …….
configurable: false
}
How do you convert “arguments” in a function to an Array?
var args = Array.prototype.slice.call(arguments);
Are objects passed around in JavaScript by reference or by value?
By reference, they are never copied.
What is the best way to dereference on object in JavaScript?
myObj = null;
What is the prototype of literal objects?
Object.prototype
What is “this” pointing to in a prototype chain?
It is always the object where the search began, not the object where the search actually found the method
How do you create an object without prototype?
let d = Object.create(null)
How do you check if a property actually exists in an object?
({ }.hasOwnProperty.call(obj,prop));
How do you change a property in the prototype chain?
You have to first find the object in the prototype chain that actually has the property, and only then to delete it. Something like: delete getDefiningObject(obj,'myProp');
What happens to the objects down the proto chain if I modify a prototype?
The proto chain will reflect the change immediately across the whole chain
Object.keys() ==> which of the following cases is actually covering:
- Enumerable / Non-enumerable;
- Own / inherited properties.
Own/enumerable
Object.getOwnPropertyNames() ==> which of the following cases is actually covering:
- Enumerable / Non-enumerable;
- Own / inherited properties.
Own/enumerable and non-enumerable
What is “for var … in … “ actually considering? Enumerable/non-enumerable and/or own/inherited properties?
enumerable/ own & inherited
How are the properties you create on an object by default - enumerable or non-enumerable? Are they going to appear in (for var … in … )?
They are enumerable, and yes, they will come up in “for var … in … )
How do you check if a property actually exists in an object or in the inherited chain?
propkey in obj
Are the getters() and setter() actually inherited from the prototype or not?
Yes they are