Globals Flashcards

1
Q

Plus / Minus infinity

A
Number.POSITIVE_INFINITY;
Number.NEGATIVE_INFINITY;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Assign NaN to a variable

A

a = Number.NaN;

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

Check if integer is NaN

A

Number.isNaN() == isNaN(x);

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

Check if variable is a number. Check if this number is small enough to be processed by JS.

A

Number.isInteger();
Number.isSafeInteger();

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

Small number (e.g. used for margin of error when comparing float)

A

Number.EPSILON;

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

Pi value

A

Math.PI;

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

Minimum, maximum value in array1

A

Math.min(...array1);
Math.max(...array1);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  • Round up
  • Round down
  • Round (regular rules)
A
Math.ceil(13.23); // 14
Math.floor(13.23); // 13
Math.round(13.23) // 13
// 13.53 will be 14
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Create current date object

A

const now = new Date();

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

Create Date object of 15'th May 2023

A

const specificDate = new Date("2023-05-15");

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

Change month to June in date object

A

now.setMonth(6);

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

Basic date formatting options

A
now.toISOString(); // "2024-02-27T12:34:56.789Z" (UTC)
now.toDateString(); // "Tue Feb 27 2024"
now.toTimeString(); // "12:34:56 GMT+0000 (UTC)"
now.toLocaleDateString(); // Localized date
now.toLocaleTimeString(); // Localized time
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Get current date timestamp

A

Date.now();

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