└── Javascript ├── Task ├── Ex. Login and OPERATORS │ ├── login.html │ └── operator │ │ ├── aremathic-opr.html │ │ └── logical-opr.html ├── OBJ-TASK │ └── index.html ├── functions │ └── index.html └── task zip │ └── Ex. Login and OPERATORS.zip ├── practice └── Array │ └── array-methods │ └── index.html ├── projects ├── PR 2. Conditional Statement │ └── index.html ├── PR-4 Udf │ └── index.html ├── PR-5 Basic calculation of array │ └── index.html ├── pr-1 javascript │ ├── calc.html │ ├── celsius.html │ ├── circle.html │ ├── interest.html │ ├── salary.html │ ├── swapping.html │ └── triangle .html └── pr-3 Reception Logic │ └── index.html ├── var.html └── zip-projects └── pr-1 javascript.zip /Javascript/Task/Ex. Login and OPERATORS/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 25 | 26 | -------------------------------------------------------------------------------- /Javascript/Task/Ex. Login and OPERATORS/operator/aremathic-opr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | aremathic-operator 7 | 8 | 9 | 25 | 26 | -------------------------------------------------------------------------------- /Javascript/Task/Ex. Login and OPERATORS/operator/logical-opr.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Logical-operator 7 | 8 | 9 | 19 | 20 | -------------------------------------------------------------------------------- /Javascript/Task/OBJ-TASK/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Document 5 | 6 | 7 | 8 | 9 | 265 | 266 | 267 | 268 | -------------------------------------------------------------------------------- /Javascript/Task/functions/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 41 | 42 | -------------------------------------------------------------------------------- /Javascript/Task/task zip/Ex. Login and OPERATORS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/Javascript-Work/09e81440ff8378195d2361bd2f9d602575af2028/Javascript/Task/task zip/Ex. Login and OPERATORS.zip -------------------------------------------------------------------------------- /Javascript/practice/Array/array-methods/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 15 | 16 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /Javascript/projects/PR 2. Conditional Statement/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 313 | 314 | 315 | -------------------------------------------------------------------------------- /Javascript/projects/PR-4 Udf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 402 | 403 | 404 | -------------------------------------------------------------------------------- /Javascript/projects/PR-5 Basic calculation of array/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/calc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 22 | 23 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/celsius.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/circle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 16 | 17 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/interest.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 18 | 19 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/salary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 26 | 27 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/swapping.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 21 | 22 | -------------------------------------------------------------------------------- /Javascript/projects/pr-1 javascript/triangle .html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 18 | 19 | -------------------------------------------------------------------------------- /Javascript/projects/pr-3 Reception Logic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 255 | 256 | 257 | -------------------------------------------------------------------------------- /Javascript/var.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Javascript/zip-projects/pr-1 javascript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperRJ49/Javascript-Work/09e81440ff8378195d2361bd2f9d602575af2028/Javascript/zip-projects/pr-1 javascript.zip --------------------------------------------------------------------------------