Basics Flashcards

1
Q

How to define variable in global and local scopes

A
if (true) {
  var x = 5; // global scope
  let y = 5; // local scope
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Ternary operator example

A

let status = age >= 18 ? "adult" : "minor";

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

What is variable hoisting

A
  • Variables (var) in JavaScript are, in a sense, “hoisted” (or “lifted”) to the top of the function or statement.
  • However, variables that are hoisted return a value of undefined (cuz why not xd)
    • “Temporal Dead Zone” (TDZ) - when variable is observable but unusable variables.
  • Because of hoisting, all var statements in a function should be placed as near to the top of the function as possible.
  • let and const are hoisted but not initialized. Referencing the variable in the block before the variable declaration results in a ReferenceError.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Convert variable to Boolean

Two ways

A

Boolean(-1);
!!value

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

Convert variable (non string) to Number

A

Number(" -12.34 ");

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

Convert variable to String

A

String(12.34);
${x}
toString() if supported on object

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

Number literal for hex, binary, BigNum numbers

A

0xff, 0b1101, 123n

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

Convert string to Float

A

parseFloat("12.5");

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

Convert string to Number

A

parseInt("101", 2); // binary to number

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

Conditionals: if

A
if (condition_1) {
  statement_1;
} else if (condition_2) {
  statement_2;
} else {
  statement_last;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Conditionals: switch

A
switch (expression) {
  case label_1:
    statements_1;
    break;
  default:
    statements_def;
    break;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Conditionals: for loop (C like)

A
for (let i = 0; i < selectObject.options.length; i++) {
  // index for - use by default
}

for (var i = 0, j = 9; i <= j; i++, j--) {
  // Two variables at once
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Conditionals: While loop(s)

A
while (n < 3) {
  n++;
  x += n;
}

do {
  i += 1;
  console.log(i);
} while (i < 5);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Conditionals: For each loop(s)

A

Creates a loop Iterating over iterable objects (including Array, Map, Set, arguments object and so on), invoking a custom iteration hook:

for (let i of arr) {
  console.log(i);
}

Will iterate all properties (numeric indexes + custom properties) or methods you define on Array object (or other object):

for (let i in obj) {
  console.log(i); 
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Exception handling structure

A
try {
  throw new Error("The message");
} catch (e) {
  throw e; // re-throw
} finally {
  console.log("Resource cleanup...");
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

JS Exceptions:
* How to throw
* Exception object properties
* How to create custom exception

A
  • How to throw:
    • throw new Error("The message");
  • Exception object properties:
    • console.error(e.name);
    • console.error(e.message);
  • How to create custom exception:
      class CustomError extends Error {
        constructor(message) {
          super(message); // Pass message to the Error class
          this.name = "CustomError"; // Set a custom error name
        }
      }
     
17
Q

What happens when you return value in finally block?

A

It overwrites previous return (including one in catch block)

18
Q

What is a closure. Use cases.

A

Closure is when a function remembers and continues to access variables from outside its scope, even when the function is executed in a different scope.

A closure is the combination of a function and the lexical environment within which that function was declared.
The Lexical Environment is a structure that holds identifier-variable mapping

Use cases:
* Data Encapsulation (Private Variables)
* Function Factories
* Memoization (Performance Optimization)
* Event Handlers (Retaining State)
* Iterators
* Partial Application / Currying

19
Q

Variadic function parameters

A
function multiply(multiplier, ...theArgs) {
  // theArgs is an actual array
  return theArgs.map((x) => multiplier * x);
}
20
Q

Renamed export

A

export {function1 as newFunctionName};

21
Q

Export from another module

A

export { name } from 'x.js'

22
Q

Renamed import

A

import {function1 as newFunctionName} from "x"

23
Q
  • Parse JSON string to object.
  • Convert object to JSON string
  • Convert object to JSON string, use 2 spaces for indentation (what are all parameters)
A

JSON.stringify(obj)
JSON.parse(jsonString)
JSON.stringify(value, undefined, 2)
Second arg is replacer - a function that alters the behavior of the stringification process

24
Q

How to handle cases where dog in adventurer.dog.name can be an undefined object? Name the techniques.

A
  • Use ?? (nullish coalescing - scalania) and ?. (optional chaining)
    • adventurer.dog?.name ?? "backup value"
  • a.b?.c will return undefined insatead of Error
  • ?? "backup value" will return "backup value" only if the calculated value is undefined.
25
Q

Check typeof variable x