Objects Flashcards

1
Q

Empty Object

A

An empty object (“empty cabinet”) can be created using one of two syntaxes:
let user = new Object(); // “object constructor” syntax
let user = {}; // “object literal” syntax

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Key Value pairs

A

Colonised Key Value pairs Comma Separated
let user = { // an object
name: “John”, // by key “name” store value “John”
age: 30 // by key “age” store value 30
};

alert( user.name ); // John
Values can be of any Javascript primitive type like boolean, string integer etc
To remove a property, we can use the delete operator:
delete user.age;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Property exists test

A

let user = { name: “John”, age: 30 };

alert( “age” in user ); // true, user.age exists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

for…in loop

A

for (key in object) {
// executes the body for each key among object properties
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Object method this

A

let user = {
name: “John”,
age: 30,

sayHi() {
// “this” is the “current object”
alert(this.name);
}

};

user.sayHi(); // John

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

this is not bound

A

In JavaScript, keyword this behaves unlike most other programming languages. It can be used in any function, even if it’s not a method of an object.
function sayHi() {
alert( this.name );
}
The value of this is evaluated during the run-time, depending on the context.

let user = { name: “John” };
let admin = { name: “Admin” };

function sayHi() {
alert( this.name );
}

// use the same function in two objects
user.f = sayHi;
admin.f = sayHi;

// these calls have different this
// “this” inside the function is the object “before the dot”
user.f(); // John (this == user)
admin.f(); // Admin (this == admin)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

this undefined

A

function sayHi() {
alert(this);
}

sayHi(); // undefined

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Arrows and this

A

Arrow functions are special: they don’t have their “own” this. If we reference this from such a function, it’s taken from the outer “normal” function.

let user = {
firstName: “Ilya”,
sayHi() {
let arrow = () => alert(this.firstName);
arrow();
}
};

user.sayHi(); // Ilya

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Constructor Function

A

Constructor functions technically are regular functions. There are two conventions though:

They are named with capital letter first.
They should be executed only with “new” operator.

function User(name) {
this.name = name;
this.isAdmin = false;
}

let user = new User(“Jack”);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Constructor Return Type

A

Usually, constructors do not have a return statement. Their task is to write all necessary stuff into this, and it automatically becomes the result.
You can override it to return an object though, but that may not be a good practice.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly