├── README.md ├── index.html ├── package.json └── src ├── 01_Basics ├── 01_variables.js ├── 02_datatypes.js ├── 03_conversionOperation.js ├── 04_comparison.js ├── 05_strings.js ├── 06_num_and_maths.js ├── 07_datesinjs.js ├── datatypes-summary.js └── test.js ├── 02_Basics ├── 01_arrays.js ├── 02_arrays.js ├── 03_objects.js └── 04_objects.js ├── 03_Basics ├── 01_functions.js ├── 02_scopes.js ├── 03_arrow.js └── 04_iife.js ├── 04_control_flow ├── one.js ├── switch.js └── truthy.js ├── 05_iterations ├── 01_for-loop.js ├── 02_do_while.js ├── 03_array-loops.js ├── 04_object-loops.js ├── 05_forEach-loop.js ├── 06_filter.js ├── 07_map.js └── 08_reduce.js ├── 06_dom ├── DOM.png ├── four-edit-remove.html ├── one.html ├── three-creating-nodes.html └── two-creating-nodes.html ├── 07_projects ├── 1-colorChanger │ ├── chaiaurcode.js │ ├── index.html │ └── style.css ├── 2-BMICalculator │ ├── chaiaurcode.js │ ├── index.html │ └── style.css ├── 3-digitalClock │ ├── chaiaurcode.js │ ├── index.html │ └── style.css ├── 4-GuessNumber │ ├── chaiaurcode.js │ ├── index.html │ └── style.css ├── 5-keyboard │ ├── chaiaurcode.js │ ├── index.html │ └── style.css ├── 6-UnlimitedColors │ ├── chaiaurcode.js │ ├── index.html │ └── style.css └── projectset1.md ├── 08-events ├── eventsbasics.js ├── one.html ├── three-setInterval.html └── two-setTimeout.html ├── 09_advance_one ├── ApiRequest.html └── promises.js ├── 10_classes_and_oop ├── 1-oop.js ├── 10-getter_setter.js ├── 11_properties_get_set.js ├── 12-object_get_set.js ├── 2-Object.js ├── 3-Prototype.js ├── 4-call.js ├── 5-myClasses.js ├── 6-inheritance.js ├── 7-staticprop.js ├── 8-bind.html ├── 9-mathpi.js └── notes.md ├── 11_closures └── closure.html ├── images ├── DOM.png ├── array.png ├── axois-calls-using-react.png ├── event-loop.png ├── for-loop-one.jpg ├── for-loop.jpg ├── function.png ├── object.png ├── stack-heap-1.jpg ├── stack-heap.jpg ├── stack-heap.png.jpg ├── stack.JPG ├── type-conversion.png └── variables.jpg └── stack-heap.jpg /README.md: -------------------------------------------------------------------------------- 1 | 2 | # ☕ Chai aur Javascript 1 3 | 4 |
Lorem ipsum dolor sit amet.
24 | 25 |Try and guess a random number between 1 and 100.
22 |You have 10 attempts to guess the right number.
23 | 24 | 29 | 30 |Previous Guesses:
32 |Guesses Remaining: 10
33 | 34 |Key | 10 |Keycode | 11 |Code | 12 |
---|---|---|
${e.key === " " ? "Space" : e.key} | 15 |${e.keyCode} | 16 |${e.code} | 17 |
Key | 270 |Keycode | 271 |Code | 272 |
---|---|---|
${e.key === " " ? "Space" : e.key} | 275 |${e.keyCode} | 276 |${e.code} | 277 |
10 | Value State Description 11 | 0 UNSENT Client has been created. open() not called yet. 12 | 1 OPENED open() has been called. 13 | 2 HEADERS_RECEIVED send() has been called, and headers and status are available. 14 | 3 LOADING Downloading; responseText holds partial data. 15 | 4 DONE The operation is complete. 16 |17 | 18 |