Introduction
I believe many people, like me, started their journey in front-end development through short-term training programs that last for four or five months. As a result, our grasp of the fundamentals of JavaScript (JS) is quite weak. Although we managed to find jobs, we often encounter problems in our daily work that we don’t know how to solve or understand due to our shaky foundation. Therefore, I want to review and organize the basic parts of front-end JS, record them, and hopefully, this will help deepen my understanding and memory through writing. I also hope this can help those who need it.
I am organizing this while watching videos, and I will continue to improve and complete it over time. If there is anything incomplete or incorrect, please feel free to point it out for discussion. Thank you!
1. Ways to Declare Variables
A variable is a container that stores a specific value, which can change over time.
var name = 'name';- Declares a variablelet name = 'name';- Declares a variableconst name = 'name';- Declares a constantfunction () {};- Declares a functionimportandexport- Handle module imports and exportsclass- Declares a class
(I don’t fully understandimportfor declaring variables, but it seems to introduce a name to store the information of the imported module.)
2. Data Types
Primitive Data Types:
number (number,NaNis a number type but not a number)
string
boolean
null
undefined
Reference Data Types:
Objectfunction
Symbol (a new primitive data type in ES6) - Unique values
(I haven’t used it much, but it’s a separate data type that provides unique values, similar to an ID.)
3. Number Types
Type Conversion
Type conversion can be done through the
Number()method
Primitive type conversion
Number([string)- If the string contains any non-numeric characters, the result isNaN.Number([bool])-truebecomes 1;falsebecomes 0.Number([null])= 0.Number([undefined])=NaN.
Reference type conversion
First, convert the reference type value to a string usingtoString(), then convert the string to a number usingNumber().
- Object.toString() =>
[Object, Object]=>NaN- Array[1, 2].toString() =>
'1, 2'=>NaN- Array[1].toString() =>
'1'=> 1- Array[].toString() =>
''=> 0
Parsing String Numbers
Start from the leftmost character of the string, find valid numbers, and convert them to valid numeric characters, stopping when a non-numeric character is encountered;
parseInt: Extracts the integer part of the stringparseInt('1.5px')=> 1parseFloat: Extracts the decimal part of the stringparseFloat('1.5px')=> 1.5
Comparing NaN
NaNis not equal to anything, including itself;if (NaN == NaN)=>false;
4. Boolean Type
There are only two values:
trueandfalse;trueequals 1,falseequals 0.
In JS, only 0,null,undefined,NaN, and empty strings are consideredfalse; everything else istrue.
5. null && undefined
nullrepresents a null object pointer.undefinedrepresents something that is not defined.
6. Array Common Methods
1.
push- Adds new content to the end of an array. The return value is the new length of the array.
2.pop- Removes the last item from an array. The return value is the removed item.
3.shift- Removes the first item from an array. The return value is the removed item.
4.unshift- Adds new content to the beginning of an array. The return value is the new length of the array.
5.splice
- Delete
arr.splice(n, m)
Starting from indexn, deletemitems. The return value is an array of the removed items. Ifmis not provided, delete fromnto the end of the array.- Add
arr.splice(n, 0, m)
Starting from indexn, delete 0 items and addmitems in front of indexn. The return value is an empty array.- Modify
arr.splice(n , m , x)
Starting from indexn, deletemitems and insertxitems in front ofn. The return value is the removed array.
6.sliceslice(n, m)- Starts from indexnand goes up to indexm, excludingm. Returns a new array.
7.concat
Concatenates arrays, can concatenate values or arrays. The return value is a new concatenated array.
1 | let arr1 = [1, 2, 3], arr2 = [11, 22, 33]; |
8. toString && join
toStringconverts an array to a string separated by commas.joinconverts an array to a string separated by a specified character.
1 | let arr = [1, 2, 3, 4]; |
9. reverse && sort
Sorting
reversereverses the array, returns a new array, and the original array is changed.sortsorts in ascending or descending order, returns a new array, and the original array is changed.
1 | let arr = [1, 3, 6, 77, 11, 45, 71]; |
10. indexOf && lastIndexOf
Checks if an item is in the array, if so, returns the corresponding index, if not, returns -1;
7. String Common Methods
1. charAt && charCodeAt
charAtfinds the character at a given index in a string and returns it.charCodeAtfinds the Unicode code at a given index in a character and returns it.fromCharCode()can convert Unicode codes back to their corresponding characters. Haven’t used it specifically.
1 | let str = 'hello word' |
2. indexOf && lastIndexOf
Like arrays, it finds the corresponding character, returns the corresponding index if found, returns -1 if not found.
1 | let str = 'hello word' |
3. slice && substring && substr
str.slice(n, m)starts from indexnand goes up to indexm, excludingm. Returns a new string; supports negative indices.str.substring(n, m)starts from indexnand goes up to indexm, excludingm. Returns a new string; does not
