-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27339a3
commit b1ec704
Showing
43 changed files
with
291 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: const-in-javascript | ||
title: Const Keyword in JavaScript | ||
sidebar_label: Const Keyword | ||
sidebar_position: 9 | ||
tags: [JavaScript] | ||
description: What is the const keyword in JavaScript and how to use it. | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Data Types in JavaScript", | ||
"position": 11, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "Learn the most popular programming language in the world." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: datatypes-in-javascript | ||
title: Data Types in JavaScript | ||
sidebar_label: Data Types | ||
sidebar_position: 1 | ||
tags: [JavaScript] | ||
description: What is the data types in JavaScript and how to use it. | ||
--- |
8 changes: 8 additions & 0 deletions
8
docs/javascript/datatypes/non-primitive-data-types/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Non Primitive Data Types", | ||
"position": 3, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "Learn the most popular programming language in the world." | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
docs/javascript/datatypes/non-primitive-data-types/object-js.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: object-datatypes-in-javascript | ||
title: Object Data Types in JavaScript | ||
sidebar_label: Object | ||
sidebar_position: 1 | ||
tags: [JavaScript] | ||
description: What is the data types in JavaScript and how to use it. | ||
--- |
8 changes: 8 additions & 0 deletions
8
docs/javascript/datatypes/primitive-data-types/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Primitive Data Types", | ||
"position": 2, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "Learn the most popular programming language in the world." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: number-datatypes-in-javascript | ||
title: Number Data Types in JavaScript | ||
sidebar_label: Number | ||
sidebar_position: 1 | ||
tags: [JavaScript] | ||
description: What is the data types in JavaScript and how to use it. | ||
--- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
id: let-in-javascript | ||
title: Let Keyword in JavaScript | ||
sidebar_label: Let Keyword | ||
sidebar_position: 8 | ||
tags: [JavaScript] | ||
description: What is the let keyword in JavaScript and how to use it. | ||
--- | ||
|
||
In JavaScript, the `let` keyword is used to declare a block-scoped variable. It was introduced in <mark>ECMAScript 6 (ES6)</mark> and is the preferred way to declare variables in modern JavaScript. | ||
|
||
> ***ES6 (ECMAScript 2015) is a major update to JavaScript that adds new syntax and features to the language. It was officially released in June 2015.*** | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Operators in JavaScript", | ||
"position": 10, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "Learn the most popular programming language in the world." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: arithmetic-operator-in-javascript | ||
title: Arithmetic Operator in JavaScript | ||
sidebar_label: Arithmetic Operator | ||
sidebar_position: 2 | ||
tags: [JavaScript] | ||
description: What is the arithmetic operator in JavaScript and how to use it. | ||
--- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
id: operators-in-javascript | ||
title: Operators in JavaScript | ||
sidebar_label: Operators | ||
sidebar_position: 1 | ||
tags: [JavaScript] | ||
description: What is the operators in JavaScript and how to use it. | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Advanced Topics", | ||
"position": 10, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Arrays and Objects", | ||
"position": 5, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Asynchronous JavaScript", | ||
"position": 7, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions
8
web-dev/javascript/control-flow-and-functions/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Control Flow and Functions", | ||
"position": 4, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "DOM Manipulation", | ||
"position": 6, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
web-dev/javascript/error-handling-and-debugging/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Error Handling and Debugging", | ||
"position": 8, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions
8
web-dev/javascript/modern-javascript-concepts/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Modern JavaScript Concepts", | ||
"position": 9, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Tools and Resources", | ||
"position": 11, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "5 minutes to learn the most important RoadMap for JavaScript Mastery." | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters