From b923306bada4e413aeb1b07a3a0cb87cbf782410 Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 12:52:29 +0500 Subject: [PATCH 1/6] update readme added the link of basics of javascript to the readme. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b5a5a635..99024439 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,6 @@ This book will teach you the basics of programming and Javascript. Whether you a ![](./assets/intro.png) JavaScript (_JS for short_) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages. + +Book comprise the following topics sequenced +1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) From 272d8c82e6a2f3cc566139bf407194ceef3378a0 Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 13:06:37 +0500 Subject: [PATCH 2/6] added datatypes Objects of the data types of number, string and object added to the list of readme. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 99024439..2a895ed7 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,8 @@ JavaScript (_JS for short_) is the programming language that enables web pages t Book comprise the following topics sequenced 1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) +2. Data Type Objects + * [Numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [Strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [Objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) +3. [Loops]() From 18cce8d7960ae36b3ca61c7964fb37048e0ebbdc Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 13:17:34 +0500 Subject: [PATCH 3/6] data types rearranged arranged the sequence of data types and also some types. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a895ed7..9d11688a 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ JavaScript (_JS for short_) is the programming language that enables web pages t Book comprise the following topics sequenced 1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) -2. Data Type Objects - * [Numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [Strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [Objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) +2. [Data Types]() + * [numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) 3. [Loops]() From ee537f97955263ef9705d20ac890d72cedf1f6ac Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 13:19:33 +0500 Subject: [PATCH 4/6] linked data types added the link to data types --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9d11688a..d27b9515 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ JavaScript (_JS for short_) is the programming language that enables web pages t Book comprise the following topics sequenced 1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) -2. [Data Types]() - * [numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) +2. [Data Types](https://github.com/akramnarejo/javascript/blob/fix-readme/basics/types.md) + * [numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) + * [objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) 3. [Loops]() From d3a0aed23b262c195e43ac794dbc777aa227b551 Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 13:25:21 +0500 Subject: [PATCH 5/6] updated readme with sequenced book topics Added the book topics in a sequence to follow them. --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d27b9515..1e9288fb 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,13 @@ This book will teach you the basics of programming and Javascript. Whether you a JavaScript (_JS for short_) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages. -Book comprise the following topics sequenced +Book comprise the following topics. 1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) 2. [Data Types](https://github.com/akramnarejo/javascript/blob/fix-readme/basics/types.md) * [numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [strings](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) - * [objects](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers) -3. [Loops]() + * [strings](https://github.com/akramnarejo/javascript/tree/fix-readme/strings) + * [objects](https://github.com/akramnarejo/javascript/tree/fix-readme/objects) +3. [Conditions](https://github.com/akramnarejo/javascript/tree/fix-readme/conditional) +4. [Loops](https://github.com/akramnarejo/javascript/tree/fix-readme/loops) +5. [Arrays](https://github.com/akramnarejo/javascript/tree/fix-readme/arrays) +6. [Functions](https://github.com/akramnarejo/javascript/tree/fix-readme/functions) From 7f1ede9417a8b1269f5f5f08b4d744fa88ebfdfd Mon Sep 17 00:00:00 2001 From: Akram Narejo Date: Tue, 5 Oct 2021 13:27:01 +0500 Subject: [PATCH 6/6] typo fixed spelling of comprise and made it bold. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e9288fb..1c3463d8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This book will teach you the basics of programming and Javascript. Whether you a JavaScript (_JS for short_) is the programming language that enables web pages to respond to user interaction beyond the basic level. It was created in 1995, and is today one of the most famous and used programming languages. -Book comprise the following topics. +**Book comprises following topics.** 1. [Basics](https://github.com/akramnarejo/javascript/tree/fix-readme/basics) 2. [Data Types](https://github.com/akramnarejo/javascript/blob/fix-readme/basics/types.md) * [numbers](https://github.com/akramnarejo/javascript/tree/fix-readme/numbers)