Skip to content

Commit bbf825e

Browse files
committed
Merge branch 'dev-3' of https://github.com/CodeHarborHub/codeharborhub into dev-3
2 parents 7265ba2 + 9a23f14 commit bbf825e

File tree

4 files changed

+52
-23
lines changed

4 files changed

+52
-23
lines changed

docs/html/_category_.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"label": "HTML",
3-
"position": 2,
4-
"link": {
5-
"type": "generated-index",
6-
"description": "HTML stands for Hyper Text Markup Language. It is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript."
7-
}
8-
}
2+
"label": "HTML",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "HTML stands for Hyper Text Markup Language. It is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript."
7+
}
8+
}

docs/javascript/_category_.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"label": "JavaScript",
3-
"position": 4,
4-
"link": {
5-
"type": "generated-index",
6-
"description": "JavaScript is a programming language that enables you to create dynamically updating content, control multimedia, animate images, and much more. In this tutorial, you'll learn the basics of JavaScript and how to use it to create interactive web experiences."
7-
}
8-
}
2+
"label": "JavaScript",
3+
"position": 4,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "JavaScript is a programming language that enables you to create dynamically updating content, control multimedia, animate images, and much more. In this tutorial, you'll learn the basics of JavaScript and how to use it to create interactive web experiences."
7+
}
8+
}

docs/javascript/data-types/non-primitive-types/object/creating-objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ In the example above, the `personPrototype` object defines a `greet` method that
276276

277277
## Conclusion
278278

279-
In this tutorial, you learned how to create objects in JavaScript using object literals, constructors, classes, and the `Object.create()` method. Each method has its advantages and use cases, depending on the complexity and structure of the objects you need to create. Understanding these different methods will help you work with objects effectively in JavaScript.
279+
In this tutorial, you learned how to create objects in JavaScript using object literals, constructors, classes, and the `Object.create()` method. Each method has its advantages and use cases, depending on the complexity and structure of the objects you need to create. Understanding these different methods will help you work with objects effectively in JavaScript.

sidebars.js

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,44 @@
1-
21
// @ts-check
32

43
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
54
const sidebars = {
6-
tutorialSidebar: [{ type: 'autogenerated', dirName: '.' }],
7-
javascript: [{ type: 'autogenerated', dirName: 'javascript', }],
8-
typescript: [{ type: 'autogenerated', dirName: 'typescript', }],
9-
react: [{ type: 'autogenerated', dirName: 'react', }],
10-
python: [{ type: 'autogenerated', dirName: 'python', }],
11-
html: [{ type: 'autogenerated', dirName: 'html', }],
12-
tailwindcss: [{ type: 'autogenerated', dirName: 'tailwind', }],
5+
tutorialSidebar: [{ type: "autogenerated", dirName: "." }],
6+
javascript: [
7+
{
8+
type: "autogenerated",
9+
dirName: "javascript",
10+
},
11+
],
12+
typescript: [
13+
{
14+
type: "autogenerated",
15+
dirName: "typescript",
16+
},
17+
],
18+
react: [
19+
{
20+
type: "autogenerated",
21+
dirName: "react",
22+
},
23+
],
24+
python: [
25+
{
26+
type: "autogenerated",
27+
dirName: "python",
28+
},
29+
],
30+
html: [
31+
{
32+
type: "autogenerated",
33+
dirName: "html",
34+
},
35+
],
36+
tailwindcss: [
37+
{
38+
type: "autogenerated",
39+
dirName: "tailwind",
40+
},
41+
],
1342
};
1443

1544
export default sidebars;

0 commit comments

Comments
 (0)