Globals Flashcards
1
Q
Plus / Minus infinity
A
Number.POSITIVE_INFINITY; Number.NEGATIVE_INFINITY;
2
Q
Assign NaN to a variable
A
a = Number.NaN;
3
Q
Check if integer is NaN
A
Number.isNaN() == isNaN(x);
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();
5
Q
Small number (e.g. used for margin of error when comparing float)
A
Number.EPSILON;
6
Q
Pi value
A
Math.PI;
7
Q
Minimum, maximum value in array1
A
Math.min(...array1);
Math.max(...array1);
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
9
Q
Create current date object
A
const now = new Date();
10
Q
Create Date object of 15'th May 2023
A
const specificDate = new Date("2023-05-15");
11
Q
Change month to June in date object
A
now.setMonth(6);
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
13
Q
Get current date timestamp
A
Date.now();