Import
0.0
(0)
- Imports functions or variables from another file.
- 877.334.2663
- joinus@mycodingclasses.com
Promise Intro
0.0
(0)
- Represents a value that might not be ready yet.
- 877.334.2663
- joinus@mycodingclasses.com
Export
0.0
(0)
- Makes functions, classes, or constants available to other files.
- 877.334.2663
- joinus@mycodingclasses.com
Named Export
0.0
(0)
- export { func1, func2 } shares several items.
- 877.334.2663
- joinus@mycodingclasses.com
Const Arrays
0.0
(0)
- You can still change contents of a const array, just not reassign it.
- 877.334.2663
- joinus@mycodingclasses.com
Default Export
0.0
(0)
- Used for a single item: export default function() {}.
- 877.334.2663
- joinus@mycodingclasses.com
Async Programming
0.0
(0)
- Async lets code wait for slow operations like data loading without freezing the page.
- 877.334.2663
- joinus@mycodingclasses.com
