diff --git a/docs/html/_category_.json b/docs/html/_category_.json index 3c4cbb3b2..33546157d 100644 --- a/docs/html/_category_.json +++ b/docs/html/_category_.json @@ -1,8 +1,8 @@ { - "label": "HTML", - "position": 2, - "link": { - "type": "generated-index", - "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." - } - } \ No newline at end of file + "label": "HTML", + "position": 2, + "link": { + "type": "generated-index", + "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." + } +} diff --git a/docs/javascript/_category_.json b/docs/javascript/_category_.json index 9fbbf122d..ccfdd2f1c 100644 --- a/docs/javascript/_category_.json +++ b/docs/javascript/_category_.json @@ -1,8 +1,8 @@ { - "label": "JavaScript", - "position": 4, - "link": { - "type": "generated-index", - "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." - } - } \ No newline at end of file + "label": "JavaScript", + "position": 4, + "link": { + "type": "generated-index", + "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." + } +} diff --git a/docs/javascript/data-types/non-primitive-types/object/creating-objects.md b/docs/javascript/data-types/non-primitive-types/object/creating-objects.md index 709c57ef9..a956384f4 100644 --- a/docs/javascript/data-types/non-primitive-types/object/creating-objects.md +++ b/docs/javascript/data-types/non-primitive-types/object/creating-objects.md @@ -276,4 +276,4 @@ In the example above, the `personPrototype` object defines a `greet` method that ## Conclusion -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. \ No newline at end of file +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. diff --git a/sidebars.js b/sidebars.js index 100a60dd9..f32463c0a 100644 --- a/sidebars.js +++ b/sidebars.js @@ -1,15 +1,44 @@ - // @ts-check /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { - tutorialSidebar: [{ type: 'autogenerated', dirName: '.' }], - javascript: [{ type: 'autogenerated', dirName: 'javascript', }], - typescript: [{ type: 'autogenerated', dirName: 'typescript', }], - react: [{ type: 'autogenerated', dirName: 'react', }], - python: [{ type: 'autogenerated', dirName: 'python', }], - html: [{ type: 'autogenerated', dirName: 'html', }], - tailwindcss: [{ type: 'autogenerated', dirName: 'tailwind', }], + tutorialSidebar: [{ type: "autogenerated", dirName: "." }], + javascript: [ + { + type: "autogenerated", + dirName: "javascript", + }, + ], + typescript: [ + { + type: "autogenerated", + dirName: "typescript", + }, + ], + react: [ + { + type: "autogenerated", + dirName: "react", + }, + ], + python: [ + { + type: "autogenerated", + dirName: "python", + }, + ], + html: [ + { + type: "autogenerated", + dirName: "html", + }, + ], + tailwindcss: [ + { + type: "autogenerated", + dirName: "tailwind", + }, + ], }; export default sidebars;