Skip to content

Commit 4698ca6

Browse files
committed
Fixed error
1 parent fd06b05 commit 4698ca6

4 files changed

Lines changed: 13 additions & 61 deletions

File tree

tutorial/best-practices-js.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tags:
88
description: "In this tutorial, we will learn about the best practices in JavaScript. We will learn about the coding standards, recommendations, conventions, rules, linting, ESLint, Prettier."
99
---
1010

11+
import Tabs from '@theme/Tabs';
12+
import TabItem from '@theme/TabItem';
13+
1114
Best Practices in JavaScript are a set of coding standards, recommendations, conventions, and rules that developers should follow while writing JavaScript code. They help in maintaining the code quality, readability, and consistency across the codebase. They also help in avoiding common pitfalls and bugs in the code.
1215

1316
There are various tools available for enforcing the best practices in JavaScript such as ESLint, Prettier, etc. These tools help in automatically checking the code against the best practices and providing suggestions or warnings to fix the issues.

tutorial/mistakes-js.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ tags: [ JavaScript, Mistakes, Common Mistakes in JavaScript, JavaScript Mistakes
77
description: "In this tutorial, we will learn about the common mistakes in JavaScript that developers make and how to avoid them. We will learn about the common pitfalls, bugs, and errors in JavaScript code and how to fix them."
88
---
99

10+
import Tabs from '@theme/Tabs';
11+
import TabItem from '@theme/TabItem';
12+
1013
JavaScript is a powerful and flexible language, but it is also easy to make mistakes while writing code. In this tutorial, we will learn about the common mistakes in JavaScript that developers make and how to avoid them. By understanding these mistakes and pitfalls, you can write better and more reliable JavaScript code.
1114

1215
## Common Mistakes in JavaScript

tutorial/modules-js.md

Lines changed: 4 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -3,70 +3,13 @@ id: modules-in-js
33
title: Modules in JavaScript
44
sidebar_label: Modules
55
sidebar_position: 37
6-
tags:
7-
[
8-
JavaScript,
9-
Modules,
10-
ES6,
11-
ES2015,
12-
ES6 Features,
13-
ES2015 Features,
14-
ES6 Tutorials,
15-
ES2015 Tutorials,
16-
ES6 Tutorial,
17-
ES2015 Tutorial,
18-
ES6 Modules,
19-
ES2015 Modules,
20-
Modules in JavaScript,
21-
Modules in ES6,
22-
Modules in ES2015,
23-
JavaScript Modules,
24-
ES6 Modules Tutorial,
25-
ES2015 Modules Tutorial,
26-
Modules Tutorial,
27-
Modules in JavaScript Tutorial,
28-
Modules in ES6 Tutorial,
29-
Modules in ES2015 Tutorial,
30-
JavaScript Modules Tutorial,
31-
ES6 Modules Example,
32-
ES2015 Modules Example,
33-
Modules Example,
34-
Modules in JavaScript Example,
35-
Modules in ES6 Example,
36-
Modules in ES2015 Example,
37-
JavaScript Modules Example,
38-
ES6 Modules Syntax,
39-
ES2015 Modules Syntax,
40-
Modules Syntax,
41-
Modules in JavaScript Syntax,
42-
Modules in ES6 Syntax,
43-
Modules in ES2015 Syntax,
44-
JavaScript Modules Syntax,
45-
ES6 Modules Syntax Example,
46-
ES2015 Modules Syntax Example,
47-
Modules Syntax Example,
48-
Modules in JavaScript Syntax Example,
49-
Modules in ES6 Syntax Example,
50-
Modules in ES2015 Syntax Example,
51-
JavaScript Modules Syntax Example,
52-
ES6 Modules Syntax Tutorial,
53-
ES2015 Modules Syntax Tutorial,
54-
Modules Syntax Tutorial,
55-
Modules in JavaScript Syntax Tutorial,
56-
Modules in ES6 Syntax Tutorial,
57-
Modules in ES2015 Syntax Tutorial,
58-
JavaScript Modules Syntax Tutorial,
59-
ES6 Modules Syntax Example Tutorial,
60-
ES2015 Modules Syntax Example Tutorial,
61-
Modules Syntax Example Tutorial,
62-
Modules in JavaScript Syntax Example Tutorial,
63-
Modules in ES6 Syntax Example Tutorial,
64-
Modules in ES2015 Syntax Example Tutorial,
65-
JavaScript Modules Syntax Example Tutorial,
66-
]
6+
tags: [ JavaScript, Modules, Modules in JavaScript, JavaScript Modules, JavaScript Modules Tutorial, JavaScript Modules Example, JavaScript Modules ES6, JavaScript Modules Import Export, JavaScript Modules Default Export, JavaScript Modules Multiple Exports, JavaScript Modules Re-exporting ]
677
description: "In this tutorial, you will learn about modules in JavaScript, a new feature introduced in ES6 (ES2015) that allows you to organize your code into reusable pieces."
688
---
699

10+
import Tabs from '@theme/Tabs';
11+
import TabItem from '@theme/TabItem';
12+
7013
In JavaScript, modules are a new feature introduced in <mark>ES6 (ES2015)</mark> that allows you to organize your code into reusable pieces. Modules are a way to split your code into separate files and import/export the parts you need.
7114

7215
In this tutorial, you will learn about modules in JavaScript with the help of examples.

tutorial/performance-js.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ tags: [ JavaScript, Performance, JavaScript Performance, JavaScript Performance
77
description: "In this tutorial, we will learn about performance optimization in JavaScript. We will discuss various techniques and best practices to improve the performance of your JavaScript code and make it run faster."
88
---
99

10+
import Tabs from '@theme/Tabs';
11+
import TabItem from '@theme/TabItem';
12+
1013
JavaScript is a powerful and flexible language, but it can also be slow if not optimized properly. In this tutorial, we will learn about performance optimization in JavaScript. By following these techniques and best practices, you can improve the performance of your JavaScript code and make it run faster.
1114

1215
## Performance Optimization Techniques

0 commit comments

Comments
 (0)