Skip to content

Commit 2d86048

Browse files
committed
Js docs added
1 parent 5d3bd5c commit 2d86048

File tree

104 files changed

+14450
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+14450
-73
lines changed

LangSidebars.ts

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -694,79 +694,79 @@ const sidebars: SidebarsConfig = {
694694
},
695695
],
696696

697-
javascript: [
698-
{
699-
type: "category",
700-
label: "Introduction to JavaScript",
701-
link: {
702-
type: "doc",
703-
id: "javascript/introduction-to-javascript/what-is-js",
704-
},
705-
items: [
706-
"javascript/introduction-to-javascript/what-is-js",
707-
"javascript/introduction-to-javascript/history-of-javascript",
708-
"javascript/introduction-to-javascript/javascript-versions",
709-
"javascript/introduction-to-javascript/how-to-run-javascript",
710-
],
711-
},
712-
713-
{
714-
type: "category",
715-
label: "All About Variables",
716-
link: {
717-
type: "doc",
718-
id: "javascript/all-about-variables/variable-declarations",
719-
},
720-
items: [
721-
"javascript/all-about-variables/variable-declarations",
722-
"javascript/all-about-variables/variable-naming-rules",
723-
"javascript/all-about-variables/variable-scopes",
724-
"javascript/all-about-variables/hoisting",
725-
],
726-
},
727-
728-
{
729-
type: "category",
730-
label: "Data Types",
731-
link: {
732-
type: "doc",
733-
id: "javascript/data-types/intro",
734-
},
735-
items: [
736-
"javascript/data-types/intro",
737-
738-
{
739-
type: "category",
740-
label: "Primitive Types",
741-
link: {
742-
type: "doc",
743-
id: "javascript/data-types/primitive-types/intro",
744-
},
745-
items: [
746-
"javascript/data-types/primitive-types/number",
747-
"javascript/data-types/primitive-types/string",
748-
"javascript/data-types/primitive-types/boolean",
749-
"javascript/data-types/primitive-types/null",
750-
"javascript/data-types/primitive-types/undefined",
751-
"javascript/data-types/primitive-types/symbol",
752-
"javascript/data-types/primitive-types/bigint",
753-
],
754-
},
755-
{
756-
type: "category",
757-
label: "Non-Primitive Types",
758-
link: {
759-
type: "doc",
760-
id: "javascript/data-types/non-primitive-types/object/intro",
761-
},
762-
items: [
763-
"javascript/data-types/non-primitive-types/object/intro",
764-
"javascript/data-types/non-primitive-types/object/creating-objects",
765-
],
766-
},
767-
],
768-
},
769-
],
697+
// javascript: [
698+
// {
699+
// type: "category",
700+
// label: "Introduction to JavaScript",
701+
// link: {
702+
// type: "doc",
703+
// id: "javascript/introduction-to-javascript/what-is-js",
704+
// },
705+
// items: [
706+
// "javascript/introduction-to-javascript/what-is-js",
707+
// "javascript/introduction-to-javascript/history-of-javascript",
708+
// "javascript/introduction-to-javascript/javascript-versions",
709+
// "javascript/introduction-to-javascript/how-to-run-javascript",
710+
// ],
711+
// },
712+
713+
// {
714+
// type: "category",
715+
// label: "All About Variables",
716+
// link: {
717+
// type: "doc",
718+
// id: "javascript/all-about-variables/variable-declarations",
719+
// },
720+
// items: [
721+
// "javascript/all-about-variables/variable-declarations",
722+
// "javascript/all-about-variables/variable-naming-rules",
723+
// "javascript/all-about-variables/variable-scopes",
724+
// "javascript/all-about-variables/hoisting",
725+
// ],
726+
// },
727+
728+
// {
729+
// type: "category",
730+
// label: "Data Types",
731+
// link: {
732+
// type: "doc",
733+
// id: "javascript/data-types/intro",
734+
// },
735+
// items: [
736+
// "javascript/data-types/intro",
737+
738+
// {
739+
// type: "category",
740+
// label: "Primitive Types",
741+
// link: {
742+
// type: "doc",
743+
// id: "javascript/data-types/primitive-types/intro",
744+
// },
745+
// items: [
746+
// "javascript/data-types/primitive-types/number",
747+
// "javascript/data-types/primitive-types/string",
748+
// "javascript/data-types/primitive-types/boolean",
749+
// "javascript/data-types/primitive-types/null",
750+
// "javascript/data-types/primitive-types/undefined",
751+
// "javascript/data-types/primitive-types/symbol",
752+
// "javascript/data-types/primitive-types/bigint",
753+
// ],
754+
// },
755+
// {
756+
// type: "category",
757+
// label: "Non-Primitive Types",
758+
// link: {
759+
// type: "doc",
760+
// id: "javascript/data-types/non-primitive-types/object/intro",
761+
// },
762+
// items: [
763+
// "javascript/data-types/non-primitive-types/object/intro",
764+
// "javascript/data-types/non-primitive-types/object/creating-objects",
765+
// ],
766+
// },
767+
// ],
768+
// },
769+
// ],
770770

771771
html: [
772772
"html/intro-html",

languages-platforms/javascript/all-about-variables/hoisting.mdx renamed to docs/javascript/all-about-variables/hoisting.mdx

File renamed without changes.

languages-platforms/javascript/all-about-variables/variable-declarations.mdx renamed to docs/javascript/all-about-variables/variable-declarations.mdx

File renamed without changes.

languages-platforms/javascript/all-about-variables/variable-naming-rules.mdx renamed to docs/javascript/all-about-variables/variable-naming-rules.mdx

File renamed without changes.

languages-platforms/javascript/all-about-variables/variable-scopes.mdx renamed to docs/javascript/all-about-variables/variable-scopes.mdx

File renamed without changes.
File renamed without changes.

languages-platforms/javascript/data-types/non-primitive-types/object/creating-objects.mdx renamed to docs/javascript/data-types/non-primitive-types/object/creating-objects.mdx

File renamed without changes.

languages-platforms/javascript/data-types/non-primitive-types/object/intro.mdx renamed to docs/javascript/data-types/non-primitive-types/object/intro.mdx

File renamed without changes.

languages-platforms/javascript/data-types/primitive-types/bigint.mdx renamed to docs/javascript/data-types/primitive-types/bigint.mdx

File renamed without changes.

languages-platforms/javascript/data-types/primitive-types/boolean.mdx renamed to docs/javascript/data-types/primitive-types/boolean.mdx

File renamed without changes.

0 commit comments

Comments
 (0)