├── .gitignore ├── Cheatsheet and notes ├── JS_Chapterwise_Notes.pdf ├── JS_Chapterwise_Notes │ ├── Chapter-00 │ │ └── JavaScript Chapter 0 - Intro to Programming .pdf │ ├── Chapter-01 │ │ ├── JavaScript Chapter 1 - Practice Set.pdf │ │ └── JavaScript Chapter 1 - Variables and Data.pdf │ ├── Chapter-02 │ │ ├── Chapter 2 PS.pdf │ │ └── Chapter 2.pdf │ ├── Chapter-03 │ │ ├── Chapter 3 PS.pdf │ │ └── Chapter 3.pdf │ ├── Chapter-04 │ │ ├── Chapter4 PS.pdf │ │ └── Chapter4.pdf │ ├── Chapter-05 │ │ ├── Chapter 5 - Arrays.pdf │ │ ├── Chapter 5 PS(1).pdf │ │ └── Chapter 5 PS.pdf │ ├── Chapter-06 │ │ ├── Chapter 6 - Practice Set.pdf │ │ └── Chapter 6.pdf │ ├── Chapter-07 │ │ ├── Chapter 7 PS (1).pdf │ │ ├── Chapter 7 PS(1).pdf │ │ ├── Chapter 7 PS.pdf │ │ └── Chapter 7.pdf │ ├── Chapter-08 │ │ ├── Chapter 8 - Practice Set.pdf │ │ ├── Chapter 8(1).pdf │ │ └── Chapter 8.pdf │ ├── Chapter-09 │ │ ├── Chapter 9 - Practice Set.pdf │ │ └── Chapter 9.pdf │ ├── Chapter-10 │ │ ├── Chapter 10 - Practice Set.pdf │ │ └── JavaScript Chapter 10.pdf │ ├── Chapter-11 │ │ ├── Chapter 11 - Object Oriented Programming.pdf │ │ └── Chapter 11 - Practice Set.pdf │ ├── Chapter-12 │ │ ├── Chapter 12 - Advanced JavaScript.pdf │ │ └── Chapter 12 - Practice Set.pdf │ ├── Exercise-01 │ │ └── JS Exercise 1.pdf │ ├── Exercise-02 │ │ └── Exercise 2 JavaScript .pdf │ ├── Exercise-03 │ │ └── Exercise 3.pdf │ ├── Exercise-04 │ │ └── Exercise 4.pdf │ ├── Exercise-05 │ │ └── Exercise 5 - Hackerman.pdf │ ├── Exercise-06 │ │ └── Exercise 6.pdf │ ├── Exercise-07 │ │ └── Exercise 7 - Password Generator.pdf │ └── Exercise-08 │ │ └── Exercise 8.pdf └── JavaScript_Cheatsheet_CodeWithHarry.pdf ├── Good_books_for_JS ├── Coding with JavaScript For Dummies.pdf ├── You_Dont_Know_JS_Up_and_Going.pdf └── eloquent_javascript.pdf ├── LICENSE ├── README.md ├── add-code-files.sh ├── lecture-001=Intro ├── code.js └── notes.txt ├── lecture-002=Variables ├── code.js └── notes.txt ├── lecture-003=Datatypes ├── code.js └── notes.txt ├── lecture-004=Primitives_and_objects ├── code.js └── notes.txt ├── lecture-005=Practice_set-1 ├── code.js └── notes.txt ├── lecture-006=Operators ├── code.js └── notes.txt ├── lecture-007=Conditionals ├── code.js └── notes.txt ├── lecture-008=Practice_set-2 ├── code.js └── notes.txt ├── lecture-009=For_loops ├── code.js └── notes.txt ├── lecture-010=While_loops ├── code.js └── notes.txt ├── lecture-011=Functions ├── code.js └── notes.txt ├── lecture-012=Practice_set-3 ├── code.js └── notes.txt ├── lecture-013=Strings ├── code.js └── notes.txt ├── lecture-014=String_methods ├── code.js └── notes.txt ├── lecture-015=Practice_set-4 ├── code.js └── notes.txt ├── lecture-016=Intro_to_arrays ├── code.js └── notes.txt ├── lecture-017=Array_methods ├── code.js └── notes.txt ├── lecture-018=Array-methods_part-2 ├── code.js └── notes.txt ├── lecture-019=Loops_with_arrays ├── code.js └── notes.txt ├── lecture-020=Map_filter_reduce ├── code.js └── notes.txt ├── lecture-021=Practice_set-5 ├── code.js └── notes.txt ├── lecture-022=Exercise-1 ├── code.js └── notes.txt ├── lecture-023=JS_in_browser ├── code.js └── notes.txt ├── lecture-024=JS_script_tag ├── code.js └── notes.txt ├── lecture-025=JS_console_object ├── code.js └── notes.txt ├── lecture-026=Exercise-1_solution ├── code.js └── notes.txt ├── lecture-027=Alert_prompt_confirm ├── code.js └── notes.txt ├── lecture-028=DOM_BOM_window_object ├── code.js └── notes.txt ├── lecture-029=Practice_set-6 ├── code.js └── notes.txt ├── lecture-030=Exercise-2 ├── code.js └── notes.txt ├── lecture-031=Walking_the_DOM ├── code.js └── notes.txt ├── lecture-032=Accessing_children_of_element ├── code.js └── notes.txt ├── lecture-033=Parents_and_siblings ├── code.js └── notes.txt ├── lecture-034=Element_only_navigation ├── code.js └── notes.txt ├── lecture-035=Table_navigation ├── code.js └── notes.txt ├── lecture-036=Searching_the_DOM ├── code.js └── notes.txt ├── lecture-037=Matches_closest_and_contains ├── code.js └── notes.txt ├── lecture-038=Practice_set-7 ├── code.js └── notes.txt ├── lecture-039=Exercise-2 ├── code.js └── notes.txt ├── lecture-040=Exercise-3 ├── code.js └── notes.txt ├── lecture-041=InnerHTML_outerHTML ├── code.js └── notes.txt ├── lecture-042=HTML_attributes_and_methods ├── code.js └── notes.txt ├── lecture-043=HTML_insertion_methods ├── code.js └── notes.txt ├── lecture-044=InsertAdjacentHTML_insertAdjacentElement_and_insertAdjacentText ├── code.js └── notes.txt ├── lecture-045=Changing_HTML_classes ├── code.js └── notes.txt ├── lecture-046=SetInterval_and_setTimeout ├── code.js └── notes.txt ├── lecture-047=Intro_to_browser_events ├── code.js └── notes.txt ├── lecture-048=Handling_browser_events ├── code.js └── notes.txt ├── lecture-049=Practice_set-8 ├── code.js └── notes.txt ├── lecture-050=Exercise-3_solutions ├── code.js └── notes.txt ├── lecture-051=Exercise-4 ├── code.js └── notes.txt ├── lecture-052=Intro_to_callbacks ├── code.js └── notes.txt ├── lecture-053=Callback_hell_and_pyramid_of_doom ├── code.js └── notes.txt ├── lecture-054=Intro_to_promises ├── code.js └── notes.txt ├── lecture-055=Promise_.then()_.catch() ├── code.js └── notes.txt ├── lecture-056=Promise_chaining_.then()_calls ├── code.js └── notes.txt ├── lecture-057=Attaching_multiple_handlers_to_promise ├── code.js └── notes.txt ├── lecture-058=Promise_API ├── code.js └── notes.txt ├── lecture-059=Intro_to_async_await ├── code.js └── notes.txt ├── lecture-060=Error-handling_try_and_catch ├── code.js └── notes.txt ├── lecture-061=Error_object_and_custom_errors ├── code.js └── notes.txt ├── lecture-062=Finally_clause ├── code.js └── notes.txt ├── lecture-063=Practice_set-9 ├── code.js └── notes.txt ├── lecture-064=Exercise-4_solutions ├── code.js └── notes.txt ├── lecture-065=Exercise-5 ├── code.js └── notes.txt ├── lecture-066=Fetch_API ├── code.js └── notes.txt ├── lecture-067=Sending_POST_request ├── code.js └── notes.txt ├── lecture-068=Cookies_in_JS ├── code.js └── notes.txt ├── lecture-069=LocalStorage_and_related_methods ├── code.js └── notes.txt ├── lecture-070=SessionStorage_and_related_methods ├── code.js └── notes.txt ├── lecture-071=Practice_set-10 ├── code.js └── notes.txt ├── lecture-072=Exercise-5_solutions ├── code.js └── notes.txt ├── lecture-073=Exercise-6 ├── code.js └── notes.txt ├── lecture-074=Intro_to_OOPS ├── code.js └── notes.txt ├── lecture-075=Prototypes-and-__proto__ ├── code.js └── notes.txt ├── lecture-076=Classes_and_objects ├── code.js └── notes.txt ├── lecture-077=Constructors ├── code.js └── notes.txt ├── lecture-078=Inheritance_and_extends_keyword ├── code.js └── notes.txt ├── lecture-079=Constructors-2 ├── code.js └── notes.txt ├── lecture-080=Constructors-3 ├── code.js └── notes.txt ├── lecture-081=Static_method ├── code.js └── notes.txt ├── lecture-082=Getters_setters_and_instanceOf ├── code.js └── notes.txt ├── lecture-083=Practice_set-11 ├── code.js └── notes.txt ├── lecture-084=Exercise-6_solutions ├── code.js └── notes.txt ├── lecture-085=Exercise-7 ├── code.js └── notes.txt ├── lecture-086=IIFE_in_JS ├── code.js └── notes.txt ├── lecture-087=Destructuring_assignment_and_spread_operator ├── code.js └── notes.txt ├── lecture-088=Local_and_global_scope ├── code.js └── notes.txt ├── lecture-089=Hoisting ├── code.js └── notes.txt ├── lecture-090=Closures ├── code.js └── notes.txt ├── lecture-091=Arrow_functions ├── code.js └── notes.txt ├── lecture-092=Practice_set-12 ├── code.js └── notes.txt ├── lecture-093=Exercise-7_solution ├── code.js └── notes.txt ├── lecture-094=Exercise-8 ├── code.js └── notes.txt ├── lecture-095=JS_on_server ├── code.js └── notes.txt ├── lecture-096=NPM_and_node.js_packages ├── code.js └── notes.txt ├── lecture-097=Modules_in_JS ├── code.js └── notes.txt ├── lecture-098=Using_express_to_create_backend ├── code.js └── notes.txt ├── lecture-099=Regular_expressions_in_JS ├── code.js └── notes.txt ├── lecture-100=Event_loop_in_JS ├── code.js └── notes.txt ├── lecture-101=Exercise-8 ├── code.js └── notes.txt ├── lecture-102=Project-1 ├── code.js └── notes.txt └── lecture-103=Project-2 ├── code.js └── notes.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-00/JavaScript Chapter 0 - Intro to Programming .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-00/JavaScript Chapter 0 - Intro to Programming .pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-01/JavaScript Chapter 1 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-01/JavaScript Chapter 1 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-01/JavaScript Chapter 1 - Variables and Data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-01/JavaScript Chapter 1 - Variables and Data.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-02/Chapter 2 PS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-02/Chapter 2 PS.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-02/Chapter 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-02/Chapter 2.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-03/Chapter 3 PS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-03/Chapter 3 PS.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-03/Chapter 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-03/Chapter 3.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-04/Chapter4 PS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-04/Chapter4 PS.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-04/Chapter4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-04/Chapter4.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 - Arrays.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 - Arrays.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 PS(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 PS(1).pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 PS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-05/Chapter 5 PS.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-06/Chapter 6 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-06/Chapter 6 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-06/Chapter 6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-06/Chapter 6.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS (1).pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS(1).pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7 PS.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-07/Chapter 7.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8(1).pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-08/Chapter 8.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-09/Chapter 9 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-09/Chapter 9 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-09/Chapter 9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-09/Chapter 9.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-10/Chapter 10 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-10/Chapter 10 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-10/JavaScript Chapter 10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-10/JavaScript Chapter 10.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-11/Chapter 11 - Object Oriented Programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-11/Chapter 11 - Object Oriented Programming.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-11/Chapter 11 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-11/Chapter 11 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-12/Chapter 12 - Advanced JavaScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-12/Chapter 12 - Advanced JavaScript.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-12/Chapter 12 - Practice Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Chapter-12/Chapter 12 - Practice Set.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-01/JS Exercise 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-01/JS Exercise 1.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-02/Exercise 2 JavaScript .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-02/Exercise 2 JavaScript .pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-03/Exercise 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-03/Exercise 3.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-04/Exercise 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-04/Exercise 4.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-05/Exercise 5 - Hackerman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-05/Exercise 5 - Hackerman.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-06/Exercise 6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-06/Exercise 6.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-07/Exercise 7 - Password Generator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-07/Exercise 7 - Password Generator.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-08/Exercise 8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JS_Chapterwise_Notes/Exercise-08/Exercise 8.pdf -------------------------------------------------------------------------------- /Cheatsheet and notes/JavaScript_Cheatsheet_CodeWithHarry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Cheatsheet and notes/JavaScript_Cheatsheet_CodeWithHarry.pdf -------------------------------------------------------------------------------- /Good_books_for_JS/Coding with JavaScript For Dummies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Good_books_for_JS/Coding with JavaScript For Dummies.pdf -------------------------------------------------------------------------------- /Good_books_for_JS/You_Dont_Know_JS_Up_and_Going.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Good_books_for_JS/You_Dont_Know_JS_Up_and_Going.pdf -------------------------------------------------------------------------------- /Good_books_for_JS/eloquent_javascript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/Good_books_for_JS/eloquent_javascript.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Sarthak Sachdev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Advanced JavaScript Course Code and Notes 2 | 3 | Welcome to the **Advanced JavaScript Course Code and Notes** repository! This repository contains the code implementations and detailed notes from the **"Code With Harry"** JavaScript course playlist. It is designed to help you strengthen your JavaScript fundamentals and deepen your understanding of advanced concepts that are essential for excelling in SDE/SWE roles. 4 | 5 | Whether you're revisiting core concepts or learning advanced topics, this resource will guide you through the critical aspects of JavaScript, enhancing your ability to solve real-world problems with clean, efficient code. 6 | 7 | ## Overview 8 | 9 | In this repository, you'll find structured code solutions and explanatory notes for each lecture of the course. The focus is on providing a comprehensive understanding of JavaScript, from the basics to more advanced topics like closures, async programming, and object-oriented programming. 10 | 11 | ## What's Included 12 | 13 | - Code implementations for each lecture in the "Code With Harry" JavaScript course playlist. 14 | - Detailed notes explaining the concepts, syntax, and best practices in JavaScript. 15 | - Practical examples to help you grasp advanced JavaScript concepts. 16 | - Problem-solving strategies and insights to enhance your coding efficiency. 17 | 18 | ## Getting Started 19 | 20 | To get started with the repository: 21 | 22 | 1. **Clone the repository** to your local machine. 23 | 2. Navigate through the respective folders for each lecture or topic to explore the code and notes. 24 | 3. Follow along with the notes, study the examples, and practice the code on your own to solidify your understanding. 25 | 26 | ## Features 27 | 28 | - Well-organized solutions and notes, following best coding practices. 29 | - Code examples and explanations for each topic covered in the course. 30 | - Focus on building strong foundational knowledge and exploring advanced JavaScript techniques. 31 | - Helpful for anyone preparing for coding interviews or wanting to deepen their JavaScript knowledge. 32 | 33 | ## Contributing 34 | 35 | Contributions to this repository are welcome! If you have additional notes, code improvements, or insights to share, feel free to open a pull request. Let's work together to make this resource even more valuable for learners. 36 | 37 | ## Support 38 | 39 | If you have any questions or encounter issues while going through the materials, feel free to open an issue in the repository. We are here to help you! 40 | 41 | ## License 42 | 43 | This repository is licensed under the [MIT License](LICENSE). You are free to use the code and notes for personal or educational purposes in accordance with the terms outlined in the license file. 44 | 45 |
46 | 47 | We hope this repository helps you on your journey to mastering JavaScript and excelling in your career as a software developer! 🚀 48 | 49 | Happy coding! 🎖️😇 50 | -------------------------------------------------------------------------------- /add-code-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Parent directory path 4 | parent_directory="C:/Users/saksh/OneDrive/Desktop/github/cwh_JS-playlist_code_and_notes" 5 | 6 | # Find and rename or copy code.cpp to code.js 7 | find "$parent_directory" -type f -name "code.cpp" -exec sh -c 'mv "$1" "${1%.cpp}.js"' sh {} \; 8 | -------------------------------------------------------------------------------- /lecture-001=Intro/code.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World") 2 | 3 | function addthreeNumbers(a, b, c) 4 | { 5 | return a + b + c; 6 | } 7 | 8 | console.log(addthreeNumbers(2, 5, 8)); -------------------------------------------------------------------------------- /lecture-001=Intro/notes.txt: -------------------------------------------------------------------------------- 1 | In this lecture we started off by understanding absolute fundamentals of programming. Why we need to do programming and invest so much time in it? Answer: Because computer is a piece of metal before we program it and has no sense of use if not programmed because it can't comprehend what stuff we want to get done and thus we need programming. 2 | 3 | Later we discussed about JS in particular, its history comes from ECMAscript, a standard followed by javascript. 4 | 5 | Javascript has wide number of applications, the most famous being helping us make intercative, user friendly web applications. 6 | 7 | Javascript is run in console of browser or can also be done in Node.JS, a run-time environment for running Javascript outside of browser using V8 engine of browsers done by Ryan Dahl. -------------------------------------------------------------------------------- /lecture-002=Variables/code.js: -------------------------------------------------------------------------------- 1 | let c = 34 + 9; 2 | var a = 23; 3 | 4 | console.log(c * a); 5 | 6 | let b = " number"; 7 | 8 | console.log(a + b); -------------------------------------------------------------------------------- /lecture-002=Variables/notes.txt: -------------------------------------------------------------------------------- 1 | This lecture was all about variables, why are they used, how to implement them and the rules of declaring and naming a variable. 2 | 3 | Also we learnt basics of datatypes in JavaScript that we will learn more about in upcoming lectures. -------------------------------------------------------------------------------- /lecture-003=Datatypes/code.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var a = "hello" // global scope 4 | let b = 12; // block scope 5 | // b = "Hi" 6 | // let c = 34; 7 | 8 | { 9 | // var c = 21; 10 | // let b = "Namaste"; // b will not throw error but c will due to var datatype 11 | let b = 'Hola'; 12 | console.log(b); 13 | } 14 | 15 | const e = 255; -------------------------------------------------------------------------------- /lecture-003=Datatypes/notes.txt: -------------------------------------------------------------------------------- 1 | In this lecture we learned more about what are datatypes, how are they associated to variable declaration, what are their types and why are they useful to us. 2 | 3 | In this lecture we also learnt about strict mode and why it is required. -------------------------------------------------------------------------------- /lecture-004=Primitives_and_objects/code.js: -------------------------------------------------------------------------------- 1 | let a = null; 2 | let b = NaN; 3 | let c = undefined; 4 | let d = "Hi"; 5 | let e = 23 6 | let g = true; 7 | let h = BigInt("1556"); 8 | let i = Symbol("I am a symbol"); 9 | 10 | 11 | console.log(typeof a); 12 | console.log(typeof b); 13 | console.log(typeof c); 14 | console.log(typeof d); 15 | console.log(typeof e); 16 | console.log(typeof g); 17 | console.log(typeof h); 18 | console.log(typeof i); 19 | 20 | // Objects in JS = Non primitive 21 | 22 | const item = { 23 | "Biscuit": 34, 24 | "Teabags": 110, 25 | "Chocolates": 29 26 | } 27 | 28 | console.log(item.Biscuit); 29 | console.log(item["Teabags"]); -------------------------------------------------------------------------------- /lecture-004=Primitives_and_objects/notes.txt: -------------------------------------------------------------------------------- 1 | In this lecture we learned about non-primitive datatypes and primitive datatypes, why we need them, what are the differences and similarities between them and how to implement them. 2 | 3 | js has 3 non primitive datatypes. 4 | 1. Arrays 5 | 2. Objects 6 | 3. functions 7 | 8 | And refer to code file to see all primitive and non primitive datatypes -------------------------------------------------------------------------------- /lecture-005=Practice_set-1/code.js: -------------------------------------------------------------------------------- 1 | // Q1. Make a string type variable and try to add a number to it. 2 | 3 | // Ans. 4 | let a = "Sarthak is "; 5 | let b = 20; 6 | a = a + b; 7 | console.log(a + " years old"); 8 | 9 | // Q2. Use typeof operator and find datatype of the string in last question 10 | 11 | // Ans. 12 | console.log(typeof a); 13 | 14 | // Q3. Create a const object in JavaScript? Can you change it to hold a number later? 15 | 16 | // Ans. 17 | const item = { 18 | "Biscuit": 34, 19 | "Teabags": 110, 20 | "Chocolates": 29 21 | } 22 | 23 | // item = 54; // will throw error due to redefinition of same variable with different datatype as one is primitive and other is non-primitive datatype 24 | 25 | // Q4. Try to add a new key to const object above. Were you able to do it? 26 | 27 | // Ans. 28 | item["Bread"] = 45; 29 | 30 | console.log(item); 31 | 32 | // Yes we were able to add it 33 | 34 | item["Teabags"] = 330; 35 | 36 | console.log(item); 37 | 38 | // item = { 39 | // "batteries": 394 // This will throw error as that reference to memory block is being changed here which would have been possible if it wasn't a const variable 40 | // } 41 | 42 | // console.log(item); 43 | 44 | // We can even edit existing values in a const object as this item word refers to a reference in block of memory that has to remain constant now that it has bee declared as const but we cans till change, update, add or delete values key value pairs from it. 45 | 46 | // Q5. Write JS program to make dictionary of word meanings of 5 words 47 | 48 | const dictionary = { 49 | "Hello": "A greeting", 50 | "World": "The Earth and its inhabitants", 51 | "JavaScript": "A high-level, dynamic, and interpreted programming language", 52 | "Dictionary": "A collection of words with their meanings", 53 | "Programming": "The process of designing, writing, testing, and maintaining the source code of computer programs" 54 | }; 55 | 56 | // To access a word meaning, use the word as a key 57 | console.log(dictionary["Hello"]); // Output: A greeting 58 | 59 | // To add a new word meaning, use the following syntax 60 | dictionary["NewWord"] = "A new definition"; 61 | 62 | // To delete a word meaning, use the delete keyword 63 | delete dictionary["World"]; -------------------------------------------------------------------------------- /lecture-005=Practice_set-1/notes.txt: -------------------------------------------------------------------------------- 1 | In this lecture we did a practice set of everything we have learnt till now. 2 | 3 | Refer to code file for questions and answers. -------------------------------------------------------------------------------- /lecture-006=Operators/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-006=Operators/code.js -------------------------------------------------------------------------------- /lecture-006=Operators/notes.txt: -------------------------------------------------------------------------------- 1 | Today's lecture is going to be about operators and expressions and in this lecture we will be learning what they are, why they are needed and how to implement them which is mentioned in the adjacent code file. -------------------------------------------------------------------------------- /lecture-007=Conditionals/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-007=Conditionals/code.js -------------------------------------------------------------------------------- /lecture-007=Conditionals/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-007=Conditionals/notes.txt -------------------------------------------------------------------------------- /lecture-008=Practice_set-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-008=Practice_set-2/code.js -------------------------------------------------------------------------------- /lecture-008=Practice_set-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-008=Practice_set-2/notes.txt -------------------------------------------------------------------------------- /lecture-009=For_loops/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-009=For_loops/code.js -------------------------------------------------------------------------------- /lecture-009=For_loops/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-009=For_loops/notes.txt -------------------------------------------------------------------------------- /lecture-010=While_loops/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-010=While_loops/code.js -------------------------------------------------------------------------------- /lecture-010=While_loops/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-010=While_loops/notes.txt -------------------------------------------------------------------------------- /lecture-011=Functions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-011=Functions/code.js -------------------------------------------------------------------------------- /lecture-011=Functions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-011=Functions/notes.txt -------------------------------------------------------------------------------- /lecture-012=Practice_set-3/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-012=Practice_set-3/code.js -------------------------------------------------------------------------------- /lecture-012=Practice_set-3/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-012=Practice_set-3/notes.txt -------------------------------------------------------------------------------- /lecture-013=Strings/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-013=Strings/code.js -------------------------------------------------------------------------------- /lecture-013=Strings/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-013=Strings/notes.txt -------------------------------------------------------------------------------- /lecture-014=String_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-014=String_methods/code.js -------------------------------------------------------------------------------- /lecture-014=String_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-014=String_methods/notes.txt -------------------------------------------------------------------------------- /lecture-015=Practice_set-4/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-015=Practice_set-4/code.js -------------------------------------------------------------------------------- /lecture-015=Practice_set-4/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-015=Practice_set-4/notes.txt -------------------------------------------------------------------------------- /lecture-016=Intro_to_arrays/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-016=Intro_to_arrays/code.js -------------------------------------------------------------------------------- /lecture-016=Intro_to_arrays/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-016=Intro_to_arrays/notes.txt -------------------------------------------------------------------------------- /lecture-017=Array_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-017=Array_methods/code.js -------------------------------------------------------------------------------- /lecture-017=Array_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-017=Array_methods/notes.txt -------------------------------------------------------------------------------- /lecture-018=Array-methods_part-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-018=Array-methods_part-2/code.js -------------------------------------------------------------------------------- /lecture-018=Array-methods_part-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-018=Array-methods_part-2/notes.txt -------------------------------------------------------------------------------- /lecture-019=Loops_with_arrays/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-019=Loops_with_arrays/code.js -------------------------------------------------------------------------------- /lecture-019=Loops_with_arrays/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-019=Loops_with_arrays/notes.txt -------------------------------------------------------------------------------- /lecture-020=Map_filter_reduce/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-020=Map_filter_reduce/code.js -------------------------------------------------------------------------------- /lecture-020=Map_filter_reduce/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-020=Map_filter_reduce/notes.txt -------------------------------------------------------------------------------- /lecture-021=Practice_set-5/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-021=Practice_set-5/code.js -------------------------------------------------------------------------------- /lecture-021=Practice_set-5/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-021=Practice_set-5/notes.txt -------------------------------------------------------------------------------- /lecture-022=Exercise-1/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-022=Exercise-1/code.js -------------------------------------------------------------------------------- /lecture-022=Exercise-1/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-022=Exercise-1/notes.txt -------------------------------------------------------------------------------- /lecture-023=JS_in_browser/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-023=JS_in_browser/code.js -------------------------------------------------------------------------------- /lecture-023=JS_in_browser/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-023=JS_in_browser/notes.txt -------------------------------------------------------------------------------- /lecture-024=JS_script_tag/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-024=JS_script_tag/code.js -------------------------------------------------------------------------------- /lecture-024=JS_script_tag/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-024=JS_script_tag/notes.txt -------------------------------------------------------------------------------- /lecture-025=JS_console_object/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-025=JS_console_object/code.js -------------------------------------------------------------------------------- /lecture-025=JS_console_object/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-025=JS_console_object/notes.txt -------------------------------------------------------------------------------- /lecture-026=Exercise-1_solution/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-026=Exercise-1_solution/code.js -------------------------------------------------------------------------------- /lecture-026=Exercise-1_solution/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-026=Exercise-1_solution/notes.txt -------------------------------------------------------------------------------- /lecture-027=Alert_prompt_confirm/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-027=Alert_prompt_confirm/code.js -------------------------------------------------------------------------------- /lecture-027=Alert_prompt_confirm/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-027=Alert_prompt_confirm/notes.txt -------------------------------------------------------------------------------- /lecture-028=DOM_BOM_window_object/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-028=DOM_BOM_window_object/code.js -------------------------------------------------------------------------------- /lecture-028=DOM_BOM_window_object/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-028=DOM_BOM_window_object/notes.txt -------------------------------------------------------------------------------- /lecture-029=Practice_set-6/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-029=Practice_set-6/code.js -------------------------------------------------------------------------------- /lecture-029=Practice_set-6/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-029=Practice_set-6/notes.txt -------------------------------------------------------------------------------- /lecture-030=Exercise-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-030=Exercise-2/code.js -------------------------------------------------------------------------------- /lecture-030=Exercise-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-030=Exercise-2/notes.txt -------------------------------------------------------------------------------- /lecture-031=Walking_the_DOM/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-031=Walking_the_DOM/code.js -------------------------------------------------------------------------------- /lecture-031=Walking_the_DOM/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-031=Walking_the_DOM/notes.txt -------------------------------------------------------------------------------- /lecture-032=Accessing_children_of_element/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-032=Accessing_children_of_element/code.js -------------------------------------------------------------------------------- /lecture-032=Accessing_children_of_element/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-032=Accessing_children_of_element/notes.txt -------------------------------------------------------------------------------- /lecture-033=Parents_and_siblings/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-033=Parents_and_siblings/code.js -------------------------------------------------------------------------------- /lecture-033=Parents_and_siblings/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-033=Parents_and_siblings/notes.txt -------------------------------------------------------------------------------- /lecture-034=Element_only_navigation/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-034=Element_only_navigation/code.js -------------------------------------------------------------------------------- /lecture-034=Element_only_navigation/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-034=Element_only_navigation/notes.txt -------------------------------------------------------------------------------- /lecture-035=Table_navigation/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-035=Table_navigation/code.js -------------------------------------------------------------------------------- /lecture-035=Table_navigation/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-035=Table_navigation/notes.txt -------------------------------------------------------------------------------- /lecture-036=Searching_the_DOM/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-036=Searching_the_DOM/code.js -------------------------------------------------------------------------------- /lecture-036=Searching_the_DOM/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-036=Searching_the_DOM/notes.txt -------------------------------------------------------------------------------- /lecture-037=Matches_closest_and_contains/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-037=Matches_closest_and_contains/code.js -------------------------------------------------------------------------------- /lecture-037=Matches_closest_and_contains/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-037=Matches_closest_and_contains/notes.txt -------------------------------------------------------------------------------- /lecture-038=Practice_set-7/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-038=Practice_set-7/code.js -------------------------------------------------------------------------------- /lecture-038=Practice_set-7/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-038=Practice_set-7/notes.txt -------------------------------------------------------------------------------- /lecture-039=Exercise-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-039=Exercise-2/code.js -------------------------------------------------------------------------------- /lecture-039=Exercise-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-039=Exercise-2/notes.txt -------------------------------------------------------------------------------- /lecture-040=Exercise-3/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-040=Exercise-3/code.js -------------------------------------------------------------------------------- /lecture-040=Exercise-3/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-040=Exercise-3/notes.txt -------------------------------------------------------------------------------- /lecture-041=InnerHTML_outerHTML/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-041=InnerHTML_outerHTML/code.js -------------------------------------------------------------------------------- /lecture-041=InnerHTML_outerHTML/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-041=InnerHTML_outerHTML/notes.txt -------------------------------------------------------------------------------- /lecture-042=HTML_attributes_and_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-042=HTML_attributes_and_methods/code.js -------------------------------------------------------------------------------- /lecture-042=HTML_attributes_and_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-042=HTML_attributes_and_methods/notes.txt -------------------------------------------------------------------------------- /lecture-043=HTML_insertion_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-043=HTML_insertion_methods/code.js -------------------------------------------------------------------------------- /lecture-043=HTML_insertion_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-043=HTML_insertion_methods/notes.txt -------------------------------------------------------------------------------- /lecture-044=InsertAdjacentHTML_insertAdjacentElement_and_insertAdjacentText/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-044=InsertAdjacentHTML_insertAdjacentElement_and_insertAdjacentText/code.js -------------------------------------------------------------------------------- /lecture-044=InsertAdjacentHTML_insertAdjacentElement_and_insertAdjacentText/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-044=InsertAdjacentHTML_insertAdjacentElement_and_insertAdjacentText/notes.txt -------------------------------------------------------------------------------- /lecture-045=Changing_HTML_classes/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-045=Changing_HTML_classes/code.js -------------------------------------------------------------------------------- /lecture-045=Changing_HTML_classes/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-045=Changing_HTML_classes/notes.txt -------------------------------------------------------------------------------- /lecture-046=SetInterval_and_setTimeout/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-046=SetInterval_and_setTimeout/code.js -------------------------------------------------------------------------------- /lecture-046=SetInterval_and_setTimeout/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-046=SetInterval_and_setTimeout/notes.txt -------------------------------------------------------------------------------- /lecture-047=Intro_to_browser_events/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-047=Intro_to_browser_events/code.js -------------------------------------------------------------------------------- /lecture-047=Intro_to_browser_events/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-047=Intro_to_browser_events/notes.txt -------------------------------------------------------------------------------- /lecture-048=Handling_browser_events/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-048=Handling_browser_events/code.js -------------------------------------------------------------------------------- /lecture-048=Handling_browser_events/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-048=Handling_browser_events/notes.txt -------------------------------------------------------------------------------- /lecture-049=Practice_set-8/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-049=Practice_set-8/code.js -------------------------------------------------------------------------------- /lecture-049=Practice_set-8/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-049=Practice_set-8/notes.txt -------------------------------------------------------------------------------- /lecture-050=Exercise-3_solutions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-050=Exercise-3_solutions/code.js -------------------------------------------------------------------------------- /lecture-050=Exercise-3_solutions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-050=Exercise-3_solutions/notes.txt -------------------------------------------------------------------------------- /lecture-051=Exercise-4/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-051=Exercise-4/code.js -------------------------------------------------------------------------------- /lecture-051=Exercise-4/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-051=Exercise-4/notes.txt -------------------------------------------------------------------------------- /lecture-052=Intro_to_callbacks/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-052=Intro_to_callbacks/code.js -------------------------------------------------------------------------------- /lecture-052=Intro_to_callbacks/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-052=Intro_to_callbacks/notes.txt -------------------------------------------------------------------------------- /lecture-053=Callback_hell_and_pyramid_of_doom/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-053=Callback_hell_and_pyramid_of_doom/code.js -------------------------------------------------------------------------------- /lecture-053=Callback_hell_and_pyramid_of_doom/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-053=Callback_hell_and_pyramid_of_doom/notes.txt -------------------------------------------------------------------------------- /lecture-054=Intro_to_promises/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-054=Intro_to_promises/code.js -------------------------------------------------------------------------------- /lecture-054=Intro_to_promises/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-054=Intro_to_promises/notes.txt -------------------------------------------------------------------------------- /lecture-055=Promise_.then()_.catch()/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-055=Promise_.then()_.catch()/code.js -------------------------------------------------------------------------------- /lecture-055=Promise_.then()_.catch()/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-055=Promise_.then()_.catch()/notes.txt -------------------------------------------------------------------------------- /lecture-056=Promise_chaining_.then()_calls/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-056=Promise_chaining_.then()_calls/code.js -------------------------------------------------------------------------------- /lecture-056=Promise_chaining_.then()_calls/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-056=Promise_chaining_.then()_calls/notes.txt -------------------------------------------------------------------------------- /lecture-057=Attaching_multiple_handlers_to_promise/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-057=Attaching_multiple_handlers_to_promise/code.js -------------------------------------------------------------------------------- /lecture-057=Attaching_multiple_handlers_to_promise/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-057=Attaching_multiple_handlers_to_promise/notes.txt -------------------------------------------------------------------------------- /lecture-058=Promise_API/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-058=Promise_API/code.js -------------------------------------------------------------------------------- /lecture-058=Promise_API/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-058=Promise_API/notes.txt -------------------------------------------------------------------------------- /lecture-059=Intro_to_async_await/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-059=Intro_to_async_await/code.js -------------------------------------------------------------------------------- /lecture-059=Intro_to_async_await/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-059=Intro_to_async_await/notes.txt -------------------------------------------------------------------------------- /lecture-060=Error-handling_try_and_catch/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-060=Error-handling_try_and_catch/code.js -------------------------------------------------------------------------------- /lecture-060=Error-handling_try_and_catch/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-060=Error-handling_try_and_catch/notes.txt -------------------------------------------------------------------------------- /lecture-061=Error_object_and_custom_errors/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-061=Error_object_and_custom_errors/code.js -------------------------------------------------------------------------------- /lecture-061=Error_object_and_custom_errors/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-061=Error_object_and_custom_errors/notes.txt -------------------------------------------------------------------------------- /lecture-062=Finally_clause/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-062=Finally_clause/code.js -------------------------------------------------------------------------------- /lecture-062=Finally_clause/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-062=Finally_clause/notes.txt -------------------------------------------------------------------------------- /lecture-063=Practice_set-9/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-063=Practice_set-9/code.js -------------------------------------------------------------------------------- /lecture-063=Practice_set-9/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-063=Practice_set-9/notes.txt -------------------------------------------------------------------------------- /lecture-064=Exercise-4_solutions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-064=Exercise-4_solutions/code.js -------------------------------------------------------------------------------- /lecture-064=Exercise-4_solutions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-064=Exercise-4_solutions/notes.txt -------------------------------------------------------------------------------- /lecture-065=Exercise-5/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-065=Exercise-5/code.js -------------------------------------------------------------------------------- /lecture-065=Exercise-5/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-065=Exercise-5/notes.txt -------------------------------------------------------------------------------- /lecture-066=Fetch_API/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-066=Fetch_API/code.js -------------------------------------------------------------------------------- /lecture-066=Fetch_API/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-066=Fetch_API/notes.txt -------------------------------------------------------------------------------- /lecture-067=Sending_POST_request/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-067=Sending_POST_request/code.js -------------------------------------------------------------------------------- /lecture-067=Sending_POST_request/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-067=Sending_POST_request/notes.txt -------------------------------------------------------------------------------- /lecture-068=Cookies_in_JS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-068=Cookies_in_JS/code.js -------------------------------------------------------------------------------- /lecture-068=Cookies_in_JS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-068=Cookies_in_JS/notes.txt -------------------------------------------------------------------------------- /lecture-069=LocalStorage_and_related_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-069=LocalStorage_and_related_methods/code.js -------------------------------------------------------------------------------- /lecture-069=LocalStorage_and_related_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-069=LocalStorage_and_related_methods/notes.txt -------------------------------------------------------------------------------- /lecture-070=SessionStorage_and_related_methods/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-070=SessionStorage_and_related_methods/code.js -------------------------------------------------------------------------------- /lecture-070=SessionStorage_and_related_methods/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-070=SessionStorage_and_related_methods/notes.txt -------------------------------------------------------------------------------- /lecture-071=Practice_set-10/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-071=Practice_set-10/code.js -------------------------------------------------------------------------------- /lecture-071=Practice_set-10/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-071=Practice_set-10/notes.txt -------------------------------------------------------------------------------- /lecture-072=Exercise-5_solutions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-072=Exercise-5_solutions/code.js -------------------------------------------------------------------------------- /lecture-072=Exercise-5_solutions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-072=Exercise-5_solutions/notes.txt -------------------------------------------------------------------------------- /lecture-073=Exercise-6/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-073=Exercise-6/code.js -------------------------------------------------------------------------------- /lecture-073=Exercise-6/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-073=Exercise-6/notes.txt -------------------------------------------------------------------------------- /lecture-074=Intro_to_OOPS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-074=Intro_to_OOPS/code.js -------------------------------------------------------------------------------- /lecture-074=Intro_to_OOPS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-074=Intro_to_OOPS/notes.txt -------------------------------------------------------------------------------- /lecture-075=Prototypes-and-__proto__/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-075=Prototypes-and-__proto__/code.js -------------------------------------------------------------------------------- /lecture-075=Prototypes-and-__proto__/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-075=Prototypes-and-__proto__/notes.txt -------------------------------------------------------------------------------- /lecture-076=Classes_and_objects/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-076=Classes_and_objects/code.js -------------------------------------------------------------------------------- /lecture-076=Classes_and_objects/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-076=Classes_and_objects/notes.txt -------------------------------------------------------------------------------- /lecture-077=Constructors/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-077=Constructors/code.js -------------------------------------------------------------------------------- /lecture-077=Constructors/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-077=Constructors/notes.txt -------------------------------------------------------------------------------- /lecture-078=Inheritance_and_extends_keyword/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-078=Inheritance_and_extends_keyword/code.js -------------------------------------------------------------------------------- /lecture-078=Inheritance_and_extends_keyword/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-078=Inheritance_and_extends_keyword/notes.txt -------------------------------------------------------------------------------- /lecture-079=Constructors-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-079=Constructors-2/code.js -------------------------------------------------------------------------------- /lecture-079=Constructors-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-079=Constructors-2/notes.txt -------------------------------------------------------------------------------- /lecture-080=Constructors-3/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-080=Constructors-3/code.js -------------------------------------------------------------------------------- /lecture-080=Constructors-3/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-080=Constructors-3/notes.txt -------------------------------------------------------------------------------- /lecture-081=Static_method/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-081=Static_method/code.js -------------------------------------------------------------------------------- /lecture-081=Static_method/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-081=Static_method/notes.txt -------------------------------------------------------------------------------- /lecture-082=Getters_setters_and_instanceOf/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-082=Getters_setters_and_instanceOf/code.js -------------------------------------------------------------------------------- /lecture-082=Getters_setters_and_instanceOf/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-082=Getters_setters_and_instanceOf/notes.txt -------------------------------------------------------------------------------- /lecture-083=Practice_set-11/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-083=Practice_set-11/code.js -------------------------------------------------------------------------------- /lecture-083=Practice_set-11/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-083=Practice_set-11/notes.txt -------------------------------------------------------------------------------- /lecture-084=Exercise-6_solutions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-084=Exercise-6_solutions/code.js -------------------------------------------------------------------------------- /lecture-084=Exercise-6_solutions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-084=Exercise-6_solutions/notes.txt -------------------------------------------------------------------------------- /lecture-085=Exercise-7/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-085=Exercise-7/code.js -------------------------------------------------------------------------------- /lecture-085=Exercise-7/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-085=Exercise-7/notes.txt -------------------------------------------------------------------------------- /lecture-086=IIFE_in_JS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-086=IIFE_in_JS/code.js -------------------------------------------------------------------------------- /lecture-086=IIFE_in_JS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-086=IIFE_in_JS/notes.txt -------------------------------------------------------------------------------- /lecture-087=Destructuring_assignment_and_spread_operator/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-087=Destructuring_assignment_and_spread_operator/code.js -------------------------------------------------------------------------------- /lecture-087=Destructuring_assignment_and_spread_operator/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-087=Destructuring_assignment_and_spread_operator/notes.txt -------------------------------------------------------------------------------- /lecture-088=Local_and_global_scope/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-088=Local_and_global_scope/code.js -------------------------------------------------------------------------------- /lecture-088=Local_and_global_scope/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-088=Local_and_global_scope/notes.txt -------------------------------------------------------------------------------- /lecture-089=Hoisting/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-089=Hoisting/code.js -------------------------------------------------------------------------------- /lecture-089=Hoisting/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-089=Hoisting/notes.txt -------------------------------------------------------------------------------- /lecture-090=Closures/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-090=Closures/code.js -------------------------------------------------------------------------------- /lecture-090=Closures/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-090=Closures/notes.txt -------------------------------------------------------------------------------- /lecture-091=Arrow_functions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-091=Arrow_functions/code.js -------------------------------------------------------------------------------- /lecture-091=Arrow_functions/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-091=Arrow_functions/notes.txt -------------------------------------------------------------------------------- /lecture-092=Practice_set-12/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-092=Practice_set-12/code.js -------------------------------------------------------------------------------- /lecture-092=Practice_set-12/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-092=Practice_set-12/notes.txt -------------------------------------------------------------------------------- /lecture-093=Exercise-7_solution/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-093=Exercise-7_solution/code.js -------------------------------------------------------------------------------- /lecture-093=Exercise-7_solution/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-093=Exercise-7_solution/notes.txt -------------------------------------------------------------------------------- /lecture-094=Exercise-8/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-094=Exercise-8/code.js -------------------------------------------------------------------------------- /lecture-094=Exercise-8/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-094=Exercise-8/notes.txt -------------------------------------------------------------------------------- /lecture-095=JS_on_server/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-095=JS_on_server/code.js -------------------------------------------------------------------------------- /lecture-095=JS_on_server/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-095=JS_on_server/notes.txt -------------------------------------------------------------------------------- /lecture-096=NPM_and_node.js_packages/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-096=NPM_and_node.js_packages/code.js -------------------------------------------------------------------------------- /lecture-096=NPM_and_node.js_packages/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-096=NPM_and_node.js_packages/notes.txt -------------------------------------------------------------------------------- /lecture-097=Modules_in_JS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-097=Modules_in_JS/code.js -------------------------------------------------------------------------------- /lecture-097=Modules_in_JS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-097=Modules_in_JS/notes.txt -------------------------------------------------------------------------------- /lecture-098=Using_express_to_create_backend/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-098=Using_express_to_create_backend/code.js -------------------------------------------------------------------------------- /lecture-098=Using_express_to_create_backend/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-098=Using_express_to_create_backend/notes.txt -------------------------------------------------------------------------------- /lecture-099=Regular_expressions_in_JS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-099=Regular_expressions_in_JS/code.js -------------------------------------------------------------------------------- /lecture-099=Regular_expressions_in_JS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-099=Regular_expressions_in_JS/notes.txt -------------------------------------------------------------------------------- /lecture-100=Event_loop_in_JS/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-100=Event_loop_in_JS/code.js -------------------------------------------------------------------------------- /lecture-100=Event_loop_in_JS/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-100=Event_loop_in_JS/notes.txt -------------------------------------------------------------------------------- /lecture-101=Exercise-8/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-101=Exercise-8/code.js -------------------------------------------------------------------------------- /lecture-101=Exercise-8/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-101=Exercise-8/notes.txt -------------------------------------------------------------------------------- /lecture-102=Project-1/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-102=Project-1/code.js -------------------------------------------------------------------------------- /lecture-102=Project-1/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-102=Project-1/notes.txt -------------------------------------------------------------------------------- /lecture-103=Project-2/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-103=Project-2/code.js -------------------------------------------------------------------------------- /lecture-103=Project-2/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-of-my-course-notes-compiled/Full-Advanced-JS-Course_code_and_notes/4431f8a6b7c9b97e5d487f55aa31cd6407f3fb7a/lecture-103=Project-2/notes.txt --------------------------------------------------------------------------------