diff --git a/JavaScript_Basics/Exercise-1.txt b/JavaScript_Basics/Exercise-1.txt index 3fffe57..48fff86 100644 --- a/JavaScript_Basics/Exercise-1.txt +++ b/JavaScript_Basics/Exercise-1.txt @@ -1,8 +1,8 @@ -Create object of student have his details of firstname lastname age college bio +1. Create an object of student containing his/her first name, last name, age, college and bio; -We want his fullname bio all details using normal functions +2. Encapsulate (with getters and setters) the user details using normal functions; +3. Implement a class called "Student", which should contain his/her first and last name, age, college and bio; -Create class of student take his details of firstname lastname age college bio +4. Encapsulate (with getters and setters) the user details using class members; -We want his fullname bio all details using class methods diff --git a/JavaScript_Basics/Order.txt b/JavaScript_Basics/Order.txt index c717e71..8ff1634 100644 --- a/JavaScript_Basics/Order.txt +++ b/JavaScript_Basics/Order.txt @@ -1,4 +1,4 @@ -This file states the order of modules you should be learning according to get most out of it:- +This file states the order of modules you should be learning according to get most out of it: Day 1 diff --git a/README.md b/README.md index a284eac..083db31 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# Javascript -This repository is for beginners to start learning Javascript from Scratch +# Javascript Basics + +This repository was made for beginners to start learning Javascript from Scratch diff --git a/References.md b/References.md new file mode 100644 index 0000000..e193e58 --- /dev/null +++ b/References.md @@ -0,0 +1,2 @@ +If you want to learn more about JS's syntax and methods, check out [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript) + diff --git a/Refrences.txt b/Refrences.txt deleted file mode 100644 index 5e3161a..0000000 --- a/Refrences.txt +++ /dev/null @@ -1,4 +0,0 @@ -Best place to learn the syntax and the methods associated all things like array - -https://developer.mozilla.org/en-US/docs/Web/JavaScript -