Skip to content

Commit c228b52

Browse files
README.md file updated
1 parent 62563fb commit c228b52

File tree

2 files changed

+42
-38
lines changed

2 files changed

+42
-38
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# JavaScript
2-
Hello,<br>
3-
Resently I am learning Javascripts Language. Then I decide to track my learning progress with the world. That's why I created this repository.<br><br>
4-
Here, I am uploading my basic concepts of Javascript Language Chapter wise.
2+
Hello GitHub World!<br>
3+
Resently, I am learning **Javascripts** Language. Then I decide to track my learning progress with the world. That is why I created this repository.<br><br>
4+
Here, I am uploading the basic concepts of Javascript Language Chapter wise.
5+
All JavaScript concepts are found in the [stack-learner](https://github.com/crescentpartha/JavaScript/tree/main/stack-learner "Topicwise JS Concepts") found in a tabular format according to the Topics.
6+
7+

stack-learner/README.md

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,43 @@
11
# _JavaScript_
22

3+
`Table of Content`
34

4-
| JavaScript ||
5+
| `Chapter`| `Lessons` |
56
| :--------: | :----------------------------: |
6-
| **Chapter**| **Lessons** |
7-
| Chapter-02 | How to print out multiple data |
8-
| ^^ | variables |
9-
| ^^ | reversedWordsNamingConvention |
10-
| ^^ | dataTypes |
11-
| ^^ | operator |
12-
| ^^ | statements |
13-
| ^^ | math-functions |
14-
| ^^ | date-functions |
15-
| Chapter-03 | comments |
16-
| ^^ | logic-&-conditions |
17-
| ^^ | logical-operator |
18-
| ^^ | ternary-operator |
19-
| ^^ | logical-And-Or-Shorthand |
20-
| Chapter-04 | loops-&-iterations |
21-
| ^^ | while-loop |
22-
| ^^ | do-while-loop |
23-
| ^^ | nested-loop |
24-
| ^^ | break-statement |
25-
| ^^ | continue-statement |
26-
| ^^ | infinity-for-loop |
27-
| Chapter-05 | string |
28-
| ^^ | string-literal-Vs-constructor |
29-
| ^^ | escape-notation |
30-
| ^^ | string-comparison |
31-
| ^^ | string-methods |
32-
| ^^ | string-length |
33-
| Chapter-06 | array |
34-
| ^^ | traverse |
35-
| ^^ | array-insert-remove-replace |
36-
| ^^ | array-search |
37-
| ^^ | multidimensional-array |
38-
| ^^ | array-reverse |
39-
| ^^ | array-methods |
7+
| __Chapter-02__ | [hello](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/01hello.js "How to print out multiple data using console.log \| 1st code in JS") |
8+
| ^^ | [variables](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/02variables.js) |
9+
| ^^ | [reversedWordsNamingConvention](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/03reservedWordsNamingConvention.js) |
10+
| ^^ | [dataTypes](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/04dataTypes.js) |
11+
| ^^ | [operator](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/05operator.js) |
12+
| ^^ | [statements](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/06statements.js) |
13+
| ^^ | [math-functions](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/07math-functions.js) |
14+
| ^^ | [date-functions](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-02/08date-functions.js) |
15+
| __Chapter-03__ | [comments](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-03/01comments.js) |
16+
| ^^ | [logic-&-conditions](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-03/02logic-%26-conditions.js) |
17+
| ^^ | [logical-operator](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-03/03logical-operator.js) |
18+
| ^^ | [ternary-operator](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-03/04ternary-operator.js) |
19+
| ^^ | [logical-And-Or-Shorthand](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-03/05logical-And-Or-Shorthand.js) |
20+
| __Chapter-04__ | [loops-&-iterations](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/01loops-%26-iterations.js) |
21+
| ^^ | [while-loop](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/02while-loop.js) |
22+
| ^^ | [do-while-loop](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/03do-while-loop.js) |
23+
| ^^ | [nested-loop](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/04nested-loop.js) |
24+
| ^^ | [break-statement](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/05break-statement.js) |
25+
| ^^ | [continue-statement](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/06continue-statement.js) |
26+
| ^^ | [infinity-for-loop](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-04/07infinity-for-loop.js) |
27+
| __Chapter-05__ | [string](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/01string.js) |
28+
| ^^ | [string-literal-Vs-constructor](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/02string-literal-vs-constructor.js) |
29+
| ^^ | [escape-notation](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/03escape-notation.js) |
30+
| ^^ | [string-comparison](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/04string-comparison.js) |
31+
| ^^ | [string-methods](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/05string-methods.js) |
32+
| ^^ | [string-length](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-05/06string-length.js) |
33+
| __Chapter-06__ | [array](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/01array.js) |
34+
| ^^ | [traverse](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/02traverse.js) |
35+
| ^^ | [array-insert-remove-replace](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/03array-insert-remove-replace.js) |
36+
| ^^ | [array-search](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/04array-search.js) |
37+
| ^^ | [multidimensional-array](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/05multidimensional-array.js) |
38+
| ^^ | [array-reverse](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/06array-reverse.js) |
39+
| ^^ | [array-methods](https://github.com/crescentpartha/JavaScript/blob/main/stack-learner/chapter-06/07array-methods.js) |
40+
4041

4142

4243

0 commit comments

Comments
 (0)