├── .DS_Store ├── backend ├── .DS_Store ├── .gitignore ├── .idea │ ├── .gitignore │ ├── backend.iml │ ├── modules.xml │ └── vcs.xml ├── app.js ├── bin │ └── www ├── config │ ├── Config.js │ └── database.js ├── controller │ ├── MovieController.js │ ├── ReviewController.js │ ├── TodosController.js │ └── UsersController.js ├── middleware │ ├── auth.js │ └── logger.js ├── model │ ├── Movie.js │ ├── Review.js │ ├── ToDo.js │ └── User.js ├── package-lock.json ├── package.json ├── public │ ├── .DS_Store │ ├── static │ │ └── hello.txt │ └── stylesheets │ │ └── style.css ├── routes │ ├── index.js │ ├── movies.js │ ├── reviews.js │ ├── todos.js │ └── users.js ├── service │ ├── MovieService.js │ ├── ReviewService.js │ ├── TodosService.js │ └── UserService.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── chapter1 ├── HelloWorld.html └── HelloWorld.js ├── chapter10 ├── ES6Module.js ├── ModuleWithIIFE.html ├── MyModule.js ├── UseEs6.html └── UseModule.js ├── chapter11 ├── Bug.html ├── Console.html ├── Date.html ├── EventLoop.html ├── GC.html ├── I18n.html ├── Map.html ├── Moment.html ├── Reg2.html ├── Reg3.html ├── Reg4.html ├── Reg5.html ├── RegClass.html ├── Set.html ├── Timer.html ├── TypeArray.html ├── URL.html └── WhyReg.html ├── chapter12 ├── Generator.html ├── Generator2.html ├── GeneratorTree.html ├── Iterator.html ├── LazyEval.html ├── RangeIterator.html └── range.py ├── chapter13 ├── Async2.html ├── Async3.html ├── AsyncAwait.html ├── AsyncDemo.html ├── AsyncGenerator.html ├── AsyncRead.js ├── CustomFetch.html ├── NetworkEvent.html ├── Pormise5.html ├── Promise.html ├── Promise4.html ├── PromiseDemo.html ├── PromiseThree.html ├── PromiseTwo.html ├── ReadAsync.js ├── ReadSync.js ├── TryCatchLimitation.html ├── WrongAsync.js ├── hello.txt ├── hello2.txt └── helloworld.txt ├── chapter14 ├── CustomMVC.html ├── Metaprogramming.html ├── PropertyDescriptor.html ├── Prototype.html ├── Proxy.html ├── Refelct.html ├── Reflect2.html ├── Species.html ├── SymbolDemo.html ├── ToPrimitive.html ├── TypeCheck.html └── TypeCheckProxy.html ├── chapter15 ├── CSSSelector.html ├── CSSSelector2.html ├── CreateElement.html ├── CustomEvent.html ├── DataAttribute.html ├── DemoPaint.html ├── Event.html ├── EventCapturing.html ├── HTMLTemplate.html ├── IndexDB.html ├── LoadOnDemand.html ├── LocalStorage.html ├── Location.html ├── Networking.html ├── Performance.html ├── RegsiterEvent.html ├── Scripting.html ├── Scrolling.html ├── SessionStorage.html ├── Traversal.html ├── WhyWorker.html ├── WorkerDemo.html ├── XSS.html ├── lib1.js ├── lib2.js └── worker.js ├── chapter16 ├── Buffer.js ├── ChildProcessDemo.js ├── CustomEmitter.js ├── EchoClient.js ├── EchoServer.js ├── EventEmitterDemo.js ├── FileInfo.js ├── ForkDemo.js ├── HelloWorld.js ├── HttpServer.js ├── ReadFile.js ├── ReadFilePromise.js ├── ShowOS.js ├── ShowProcess.js ├── SimpelServer.js ├── SpawnDemo.js ├── WriteFile.js ├── child.js ├── demo.txt ├── demo2.txt ├── hello.html ├── hello.txt └── my-module.js ├── chapter2 ├── Lexical.html ├── Literal.html └── Variable.html ├── chapter3 ├── Arithmetic.html ├── ArrayToPrimitive.html ├── Boolean.html ├── DestructuringAssign.html ├── Equality.html ├── FloatingPoint.html ├── GlobalObject.html ├── IIFE.html ├── MultiReturn.html ├── NullUndefined.html ├── NumberType.html ├── ObjectDestru.html ├── ObjectTypeConversion.html ├── Operation.html ├── ParallelAssign.py ├── String.html ├── StringMethod.html ├── StringMethod2.html ├── StringMethod3.html ├── Symbol.html ├── TaggedTemplateLiteral.html ├── Text.html ├── Type.html ├── TypeConversion.html ├── ValueAndRef.html ├── VarDeclar2.html ├── VariableDeclaration.html ├── VariableValue.html ├── Zero.html └── multi_return.go ├── chapter4 ├── Arithmetic.html ├── AssignmentWithOperation.html ├── Bitwise.html ├── BitwsiseVsLogical.html ├── Comparison.html ├── ConditionalOp.html ├── Delete.html ├── Equality.html ├── Equality2.html ├── Expression.html ├── Expression2.html ├── InOp.html ├── LogicalAnd.html ├── LogicalNot.html ├── LogicalOr.html ├── LogicalUsecase.html ├── Precedence.html ├── TypeOf.html ├── Unary.html ├── instanceOf.html └── void.html ├── chapter5 ├── Break.html ├── BreakTwo.html ├── Conditional.html ├── Continue.html ├── DoWhile.html ├── ElseIf.html ├── ForIn.html ├── ForLoop.html ├── ForOf.html ├── ForOfObject.html ├── ForOfSet.html ├── IfElse.html ├── Loop.html ├── NestedIf.html ├── NestedLoop.html ├── Return.html ├── Statement.html ├── SwitchDemo.html ├── TryCatch-2.html ├── TryCatch.html ├── UseStrict.html └── WhileUseCase.html ├── chapter6 ├── DeepClone.html ├── Extend.html ├── ExtendedObjectLiteral.html ├── GetterSetter.html ├── PropertyLookup.html ├── Prototype.html ├── Query.html ├── ShorthandMethod.html ├── ToJSON.html └── WhyObject.html ├── chapter7 ├── ArrayIndex.html ├── ArrayMethod.html ├── ArrayMethod2.html ├── ArrayMethod3.html ├── ArrayMethod4.html ├── ArrayMethod5.html ├── ArrayToString.html ├── Delete.html ├── FPExample.html ├── FlatMap.html ├── ForEach.html ├── MultiDimensionalArray.html ├── ObjectArray.html ├── Sort.html └── WhyArray.html ├── chapter8 ├── ArgumentParam.html ├── Cache.html ├── CallApplyBind.html ├── CheckArg.html ├── CheckArgHOF.html ├── Closure.html ├── Closure3.html ├── ClosureAsObject.html ├── CounterWithObj.html ├── DestructuringArg.html ├── FirstClassFun.html ├── FunCon.html ├── FuncProperty.html ├── ImplicitInvocation.html ├── Invocation.html ├── MyModule.js ├── NestedFun.html ├── ParameterPassing.html ├── RestParameter.html ├── Return.html ├── RevalingModulePattern.html └── WhyFunction.html ├── chapter9 ├── ClassDemo.html ├── Composition.html ├── Field.html ├── GetterSetter.html ├── Method.html ├── StaticMethod.html └── WhyClass.html ├── fp ├── .DS_Store ├── ArityChange.html ├── Compose.html ├── Compse2.html ├── Curry.html ├── CurryUseCase.html ├── Demethodnize.html ├── Factorial.html ├── Immutable.html ├── Lenses.html ├── Logging.html ├── Memonize.html ├── Negate.html ├── Once.html ├── OnceAndAfter.html ├── Pipe.html ├── PipeMulti.html ├── Ramda.html ├── Ramda2.html ├── TopKFP.html ├── TopKImperative.html ├── TopKRamda.html ├── category theory │ ├── Either.js │ ├── IoMonad.js │ ├── MayBe.js │ ├── MayBeUsecase.html │ ├── Monoid.html │ ├── Validation.html │ ├── Validation2.html │ ├── WhyEither.html │ ├── WhyFunctor.html │ ├── WhyMayBeFunctor.html │ ├── WhyMonad.html │ ├── WhyWriter.html │ ├── WriterMonad.html │ ├── data.txt │ └── meta.txt └── compose.fsx ├── frontend ├── .eslintrc.json ├── .gitignore ├── .idea │ ├── .gitignore │ ├── frontend.iml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── jsconfig.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── public │ ├── next.svg │ └── vercel.svg └── src │ └── app │ ├── components │ ├── ClassComponent.js │ ├── Conditional.js │ ├── ConflictDemo.js │ ├── Container.js │ ├── ContextProblem.js │ ├── Counter.js │ ├── CounterTwo.js │ ├── FocusInput.js │ ├── ForwardRefDemo.js │ ├── FragmentDemo.js │ ├── Greeting.js │ ├── HelloWorld.js │ ├── ImperativeHandleDemo.js │ ├── ImpureDemo.js │ ├── JsxDemo.js │ ├── ListDemo.js │ ├── MemoDemo.js │ ├── MemoProblem.js │ ├── PortalDemo.js │ ├── Profile.js │ ├── RefDemo.js │ ├── RefEquality.js │ ├── SuspendDemo.js │ ├── SuspenseWithFetch.js │ ├── TodoWithReducer.js │ ├── UpdateListDemo.js │ ├── UserForm.js │ ├── context │ │ ├── ContextDemo.js │ │ ├── DispatchContext.js │ │ ├── ThemeContext.js │ │ └── TodoWithReducerContext.js │ ├── customformik │ │ ├── CustomField.js │ │ ├── CustomFormik.js │ │ ├── CustomFormikDemo.js │ │ └── CustomFormikWithJSX.js │ ├── effect │ │ ├── CleanupDemo.js │ │ ├── DestroyDemo.js │ │ ├── EffectDemo.js │ │ ├── FetchTodo.js │ │ └── NativeEvent.js │ ├── formik │ │ ├── BasicFormikExample.js │ │ ├── FormikDemo.js │ │ └── FormikValidation.js │ ├── hook │ │ ├── ShowUser.js │ │ ├── useCustomReducer.js │ │ └── useFetch.js │ ├── pattern │ │ ├── ComponentViaVariable.js │ │ ├── hoc │ │ │ ├── HocDemo.js │ │ │ ├── TodoList.js │ │ │ ├── UserList.js │ │ │ ├── withBorder.js │ │ │ ├── withFetchLoader.js │ │ │ └── withLogger.js │ │ └── render-property │ │ │ └── RenderPropertyDemo.js │ ├── ref │ │ └── DatePicker.js │ ├── rendering │ │ ├── ChildList.js │ │ ├── DifferentPosition.js │ │ ├── DifferentRoot.js │ │ ├── Fancy.css │ │ ├── RenderCounter.js │ │ ├── RenderDemo.js │ │ ├── SamePositionRender.js │ │ └── SameRoot.js │ └── tab │ │ ├── Tab.css │ │ ├── Tab.js │ │ └── TabDemo.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── page.module.css ├── mongo └── command.txt ├── nextjs-redux-mongo-auth ├── .env ├── .gitignore ├── .idea │ ├── .gitignore │ ├── modules.xml │ ├── nextjs-redux-mongo-auth.iml │ └── vcs.xml ├── README.md ├── app │ ├── .env │ ├── StoreProvider.tsx │ ├── api │ │ └── counter │ │ │ └── route.ts │ ├── components │ │ ├── Auth │ │ │ └── IsAuth.tsx │ │ ├── Nav.tsx │ │ ├── Welcome.tsx │ │ ├── common │ │ │ └── ConfirmModal.tsx │ │ ├── counter │ │ │ ├── Counter.module.css │ │ │ └── Counter.tsx │ │ ├── movie │ │ │ ├── MovieDetailsUI.tsx │ │ │ ├── MovieForm.tsx │ │ │ ├── MovieListUI.tsx │ │ │ ├── MovieUI.tsx │ │ │ ├── NewMovieInput.tsx │ │ │ └── movie.module.css │ │ ├── quotes │ │ │ ├── Quotes.module.css │ │ │ └── Quotes.tsx │ │ └── review │ │ │ ├── ReviewForm.tsx │ │ │ ├── ReviewInput.tsx │ │ │ ├── ReviewList.tsx │ │ │ ├── ReviewUI.tsx │ │ │ └── review.module.css │ ├── icon.ico │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── logout │ │ └── page.tsx │ ├── movies │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── quotes │ │ └── page.tsx │ ├── styles │ │ ├── globals.css │ │ └── layout.module.css │ └── verify │ │ └── page.tsx ├── lib │ ├── createAppSlice.ts │ ├── features │ │ ├── auth │ │ │ ├── authApi.ts │ │ │ ├── authHook.ts │ │ │ └── authSlice.ts │ │ ├── counter │ │ │ ├── counterAPI.ts │ │ │ └── counterSlice.ts │ │ ├── movies │ │ │ └── movieApi.ts │ │ ├── quotes │ │ │ └── quotesApiSlice.ts │ │ └── review │ │ │ └── reviewApi.ts │ ├── hooks.ts │ └── store.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── public │ └── logo.svg └── tsconfig.json ├── nextjs-redux ├── .env ├── .eslintrc.json ├── .gitignore ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ ├── nextjs-redux.iml │ └── vcs.xml ├── README.md ├── app │ ├── StoreProvider.tsx │ ├── action.ts │ ├── admin │ │ └── page.tsx │ ├── api │ │ ├── counter │ │ │ └── route.ts │ │ └── todos │ │ │ └── route.ts │ ├── components │ │ ├── Nav.tsx │ │ ├── TodoCount.tsx │ │ ├── counter │ │ │ ├── Counter.module.css │ │ │ └── Counter.tsx │ │ ├── quotes │ │ │ ├── Quotes.module.css │ │ │ └── Quotes.tsx │ │ └── todos │ │ │ ├── TodoApiUI.tsx │ │ │ └── TodosUI.tsx │ ├── config │ │ └── Config.tsx │ ├── dashboard │ │ ├── @analytics │ │ │ └── page.tsx │ │ ├── @team │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── icon.ico │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── movies │ │ ├── (marketing) │ │ │ └── dashboard │ │ │ │ ├── layout.tsx │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── MovieList.tsx │ │ ├── [...slug] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── quotes │ │ └── page.tsx │ ├── styles │ │ ├── globals.css │ │ └── layout.module.css │ ├── todos │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── totaltodo │ │ ├── error.tsx │ │ └── page.tsx │ └── verify │ │ └── page.tsx ├── lib │ ├── createAppSlice.ts │ ├── features │ │ ├── counter │ │ │ ├── counterAPI.ts │ │ │ └── counterSlice.ts │ │ ├── movies │ │ │ └── movieApi.ts │ │ ├── quotes │ │ │ └── quotesApiSlice.ts │ │ └── todo │ │ │ ├── todoSlice.ts │ │ │ └── todosApiSlice.ts │ ├── hooks.ts │ └── store.ts ├── middleware.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── public │ └── logo.svg ├── redux-step.txt └── tsconfig.json ├── postman └── React_8thBatch_API.postman_collection.json └── typescript ├── CallSig.ts ├── ParamProp.ts ├── Protected.ts ├── Stack.ts ├── annyo.ts ├── array_demo.ts ├── assig.ts ├── basic.ts ├── class-demo.ts ├── class-exp.ts ├── constraint.ts ├── constraint2.ts ├── construct-sig.ts ├── every_day_type.ts ├── func-type.ts ├── function.ts ├── gen-class.ts ├── gen-fun.ts ├── gen-fun2.ts ├── generic-problem.ts ├── hello.js ├── hello.ts ├── implement.ts ├── index-sig.ts ├── inteface-types.js ├── inteface-types.ts ├── keyof.ts ├── literal-type.ts ├── narrowing.ts ├── object-literal.ts ├── object-type.js ├── object-type.ts ├── optional-par.ts ├── our-array.ts ├── pair-generic.ts ├── private.js ├── private.ts ├── problem.js ├── read-only.ts ├── readonly-arr.ts ├── rest.ts ├── shape.ts ├── tuple.ts ├── type-alias.ts ├── type_extends.ts └── void-type.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/.DS_Store -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.idea/.gitignore -------------------------------------------------------------------------------- /backend/.idea/backend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.idea/backend.iml -------------------------------------------------------------------------------- /backend/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.idea/modules.xml -------------------------------------------------------------------------------- /backend/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/.idea/vcs.xml -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/bin/www -------------------------------------------------------------------------------- /backend/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/config/Config.js -------------------------------------------------------------------------------- /backend/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/config/database.js -------------------------------------------------------------------------------- /backend/controller/MovieController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/controller/MovieController.js -------------------------------------------------------------------------------- /backend/controller/ReviewController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/controller/ReviewController.js -------------------------------------------------------------------------------- /backend/controller/TodosController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/controller/TodosController.js -------------------------------------------------------------------------------- /backend/controller/UsersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/controller/UsersController.js -------------------------------------------------------------------------------- /backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/middleware/auth.js -------------------------------------------------------------------------------- /backend/middleware/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/middleware/logger.js -------------------------------------------------------------------------------- /backend/model/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/model/Movie.js -------------------------------------------------------------------------------- /backend/model/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/model/Review.js -------------------------------------------------------------------------------- /backend/model/ToDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/model/ToDo.js -------------------------------------------------------------------------------- /backend/model/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/model/User.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/public/.DS_Store -------------------------------------------------------------------------------- /backend/public/static/hello.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /backend/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/public/stylesheets/style.css -------------------------------------------------------------------------------- /backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/routes/index.js -------------------------------------------------------------------------------- /backend/routes/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/routes/movies.js -------------------------------------------------------------------------------- /backend/routes/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/routes/reviews.js -------------------------------------------------------------------------------- /backend/routes/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/routes/todos.js -------------------------------------------------------------------------------- /backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/routes/users.js -------------------------------------------------------------------------------- /backend/service/MovieService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/service/MovieService.js -------------------------------------------------------------------------------- /backend/service/ReviewService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/service/ReviewService.js -------------------------------------------------------------------------------- /backend/service/TodosService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/service/TodosService.js -------------------------------------------------------------------------------- /backend/service/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/service/UserService.js -------------------------------------------------------------------------------- /backend/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/views/error.jade -------------------------------------------------------------------------------- /backend/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/views/index.jade -------------------------------------------------------------------------------- /backend/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/backend/views/layout.jade -------------------------------------------------------------------------------- /chapter1/HelloWorld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter1/HelloWorld.html -------------------------------------------------------------------------------- /chapter1/HelloWorld.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World'); -------------------------------------------------------------------------------- /chapter10/ES6Module.js: -------------------------------------------------------------------------------- 1 | export default function api() 2 | { 3 | console.log('ES6 Module'); 4 | } -------------------------------------------------------------------------------- /chapter10/ModuleWithIIFE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter10/ModuleWithIIFE.html -------------------------------------------------------------------------------- /chapter10/MyModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter10/MyModule.js -------------------------------------------------------------------------------- /chapter10/UseEs6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter10/UseEs6.html -------------------------------------------------------------------------------- /chapter10/UseModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter10/UseModule.js -------------------------------------------------------------------------------- /chapter11/Bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Bug.html -------------------------------------------------------------------------------- /chapter11/Console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Console.html -------------------------------------------------------------------------------- /chapter11/Date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Date.html -------------------------------------------------------------------------------- /chapter11/EventLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/EventLoop.html -------------------------------------------------------------------------------- /chapter11/GC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/GC.html -------------------------------------------------------------------------------- /chapter11/I18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/I18n.html -------------------------------------------------------------------------------- /chapter11/Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Map.html -------------------------------------------------------------------------------- /chapter11/Moment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Moment.html -------------------------------------------------------------------------------- /chapter11/Reg2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Reg2.html -------------------------------------------------------------------------------- /chapter11/Reg3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Reg3.html -------------------------------------------------------------------------------- /chapter11/Reg4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Reg4.html -------------------------------------------------------------------------------- /chapter11/Reg5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Reg5.html -------------------------------------------------------------------------------- /chapter11/RegClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/RegClass.html -------------------------------------------------------------------------------- /chapter11/Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Set.html -------------------------------------------------------------------------------- /chapter11/Timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/Timer.html -------------------------------------------------------------------------------- /chapter11/TypeArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/TypeArray.html -------------------------------------------------------------------------------- /chapter11/URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/URL.html -------------------------------------------------------------------------------- /chapter11/WhyReg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter11/WhyReg.html -------------------------------------------------------------------------------- /chapter12/Generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/Generator.html -------------------------------------------------------------------------------- /chapter12/Generator2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/Generator2.html -------------------------------------------------------------------------------- /chapter12/GeneratorTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/GeneratorTree.html -------------------------------------------------------------------------------- /chapter12/Iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/Iterator.html -------------------------------------------------------------------------------- /chapter12/LazyEval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/LazyEval.html -------------------------------------------------------------------------------- /chapter12/RangeIterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter12/RangeIterator.html -------------------------------------------------------------------------------- /chapter12/range.py: -------------------------------------------------------------------------------- 1 | for i in range(5): 2 | print(i) -------------------------------------------------------------------------------- /chapter13/Async2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/Async2.html -------------------------------------------------------------------------------- /chapter13/Async3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/Async3.html -------------------------------------------------------------------------------- /chapter13/AsyncAwait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/AsyncAwait.html -------------------------------------------------------------------------------- /chapter13/AsyncDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/AsyncDemo.html -------------------------------------------------------------------------------- /chapter13/AsyncGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/AsyncGenerator.html -------------------------------------------------------------------------------- /chapter13/AsyncRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/AsyncRead.js -------------------------------------------------------------------------------- /chapter13/CustomFetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/CustomFetch.html -------------------------------------------------------------------------------- /chapter13/NetworkEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/NetworkEvent.html -------------------------------------------------------------------------------- /chapter13/Pormise5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/Pormise5.html -------------------------------------------------------------------------------- /chapter13/Promise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/Promise.html -------------------------------------------------------------------------------- /chapter13/Promise4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/Promise4.html -------------------------------------------------------------------------------- /chapter13/PromiseDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/PromiseDemo.html -------------------------------------------------------------------------------- /chapter13/PromiseThree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/PromiseThree.html -------------------------------------------------------------------------------- /chapter13/PromiseTwo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/PromiseTwo.html -------------------------------------------------------------------------------- /chapter13/ReadAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/ReadAsync.js -------------------------------------------------------------------------------- /chapter13/ReadSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/ReadSync.js -------------------------------------------------------------------------------- /chapter13/TryCatchLimitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/TryCatchLimitation.html -------------------------------------------------------------------------------- /chapter13/WrongAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/WrongAsync.js -------------------------------------------------------------------------------- /chapter13/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/hello.txt -------------------------------------------------------------------------------- /chapter13/hello2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter13/hello2.txt -------------------------------------------------------------------------------- /chapter13/helloworld.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /chapter14/CustomMVC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/CustomMVC.html -------------------------------------------------------------------------------- /chapter14/Metaprogramming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Metaprogramming.html -------------------------------------------------------------------------------- /chapter14/PropertyDescriptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/PropertyDescriptor.html -------------------------------------------------------------------------------- /chapter14/Prototype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Prototype.html -------------------------------------------------------------------------------- /chapter14/Proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Proxy.html -------------------------------------------------------------------------------- /chapter14/Refelct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Refelct.html -------------------------------------------------------------------------------- /chapter14/Reflect2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Reflect2.html -------------------------------------------------------------------------------- /chapter14/Species.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/Species.html -------------------------------------------------------------------------------- /chapter14/SymbolDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/SymbolDemo.html -------------------------------------------------------------------------------- /chapter14/ToPrimitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/ToPrimitive.html -------------------------------------------------------------------------------- /chapter14/TypeCheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/TypeCheck.html -------------------------------------------------------------------------------- /chapter14/TypeCheckProxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter14/TypeCheckProxy.html -------------------------------------------------------------------------------- /chapter15/CSSSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/CSSSelector.html -------------------------------------------------------------------------------- /chapter15/CSSSelector2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/CSSSelector2.html -------------------------------------------------------------------------------- /chapter15/CreateElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/CreateElement.html -------------------------------------------------------------------------------- /chapter15/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/CustomEvent.html -------------------------------------------------------------------------------- /chapter15/DataAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/DataAttribute.html -------------------------------------------------------------------------------- /chapter15/DemoPaint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/DemoPaint.html -------------------------------------------------------------------------------- /chapter15/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Event.html -------------------------------------------------------------------------------- /chapter15/EventCapturing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/EventCapturing.html -------------------------------------------------------------------------------- /chapter15/HTMLTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/HTMLTemplate.html -------------------------------------------------------------------------------- /chapter15/IndexDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/IndexDB.html -------------------------------------------------------------------------------- /chapter15/LoadOnDemand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/LoadOnDemand.html -------------------------------------------------------------------------------- /chapter15/LocalStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/LocalStorage.html -------------------------------------------------------------------------------- /chapter15/Location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Location.html -------------------------------------------------------------------------------- /chapter15/Networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Networking.html -------------------------------------------------------------------------------- /chapter15/Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Performance.html -------------------------------------------------------------------------------- /chapter15/RegsiterEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/RegsiterEvent.html -------------------------------------------------------------------------------- /chapter15/Scripting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Scripting.html -------------------------------------------------------------------------------- /chapter15/Scrolling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Scrolling.html -------------------------------------------------------------------------------- /chapter15/SessionStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/SessionStorage.html -------------------------------------------------------------------------------- /chapter15/Traversal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/Traversal.html -------------------------------------------------------------------------------- /chapter15/WhyWorker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/WhyWorker.html -------------------------------------------------------------------------------- /chapter15/WorkerDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/WorkerDemo.html -------------------------------------------------------------------------------- /chapter15/XSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/XSS.html -------------------------------------------------------------------------------- /chapter15/lib1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/lib1.js -------------------------------------------------------------------------------- /chapter15/lib2.js: -------------------------------------------------------------------------------- 1 | console.log('lib2 .js'); -------------------------------------------------------------------------------- /chapter15/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter15/worker.js -------------------------------------------------------------------------------- /chapter16/Buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/Buffer.js -------------------------------------------------------------------------------- /chapter16/ChildProcessDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ChildProcessDemo.js -------------------------------------------------------------------------------- /chapter16/CustomEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/CustomEmitter.js -------------------------------------------------------------------------------- /chapter16/EchoClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/EchoClient.js -------------------------------------------------------------------------------- /chapter16/EchoServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/EchoServer.js -------------------------------------------------------------------------------- /chapter16/EventEmitterDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/EventEmitterDemo.js -------------------------------------------------------------------------------- /chapter16/FileInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/FileInfo.js -------------------------------------------------------------------------------- /chapter16/ForkDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ForkDemo.js -------------------------------------------------------------------------------- /chapter16/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/HelloWorld.js -------------------------------------------------------------------------------- /chapter16/HttpServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/HttpServer.js -------------------------------------------------------------------------------- /chapter16/ReadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ReadFile.js -------------------------------------------------------------------------------- /chapter16/ReadFilePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ReadFilePromise.js -------------------------------------------------------------------------------- /chapter16/ShowOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ShowOS.js -------------------------------------------------------------------------------- /chapter16/ShowProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/ShowProcess.js -------------------------------------------------------------------------------- /chapter16/SimpelServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/SimpelServer.js -------------------------------------------------------------------------------- /chapter16/SpawnDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/SpawnDemo.js -------------------------------------------------------------------------------- /chapter16/WriteFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/WriteFile.js -------------------------------------------------------------------------------- /chapter16/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/child.js -------------------------------------------------------------------------------- /chapter16/demo.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /chapter16/demo2.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /chapter16/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/hello.html -------------------------------------------------------------------------------- /chapter16/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/hello.txt -------------------------------------------------------------------------------- /chapter16/my-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter16/my-module.js -------------------------------------------------------------------------------- /chapter2/Lexical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter2/Lexical.html -------------------------------------------------------------------------------- /chapter2/Literal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter2/Literal.html -------------------------------------------------------------------------------- /chapter2/Variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter2/Variable.html -------------------------------------------------------------------------------- /chapter3/Arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Arithmetic.html -------------------------------------------------------------------------------- /chapter3/ArrayToPrimitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/ArrayToPrimitive.html -------------------------------------------------------------------------------- /chapter3/Boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Boolean.html -------------------------------------------------------------------------------- /chapter3/DestructuringAssign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/DestructuringAssign.html -------------------------------------------------------------------------------- /chapter3/Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Equality.html -------------------------------------------------------------------------------- /chapter3/FloatingPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/FloatingPoint.html -------------------------------------------------------------------------------- /chapter3/GlobalObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/GlobalObject.html -------------------------------------------------------------------------------- /chapter3/IIFE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/IIFE.html -------------------------------------------------------------------------------- /chapter3/MultiReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/MultiReturn.html -------------------------------------------------------------------------------- /chapter3/NullUndefined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/NullUndefined.html -------------------------------------------------------------------------------- /chapter3/NumberType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/NumberType.html -------------------------------------------------------------------------------- /chapter3/ObjectDestru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/ObjectDestru.html -------------------------------------------------------------------------------- /chapter3/ObjectTypeConversion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/ObjectTypeConversion.html -------------------------------------------------------------------------------- /chapter3/Operation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Operation.html -------------------------------------------------------------------------------- /chapter3/ParallelAssign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/ParallelAssign.py -------------------------------------------------------------------------------- /chapter3/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/String.html -------------------------------------------------------------------------------- /chapter3/StringMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/StringMethod.html -------------------------------------------------------------------------------- /chapter3/StringMethod2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/StringMethod2.html -------------------------------------------------------------------------------- /chapter3/StringMethod3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/StringMethod3.html -------------------------------------------------------------------------------- /chapter3/Symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Symbol.html -------------------------------------------------------------------------------- /chapter3/TaggedTemplateLiteral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/TaggedTemplateLiteral.html -------------------------------------------------------------------------------- /chapter3/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Text.html -------------------------------------------------------------------------------- /chapter3/Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Type.html -------------------------------------------------------------------------------- /chapter3/TypeConversion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/TypeConversion.html -------------------------------------------------------------------------------- /chapter3/ValueAndRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/ValueAndRef.html -------------------------------------------------------------------------------- /chapter3/VarDeclar2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/VarDeclar2.html -------------------------------------------------------------------------------- /chapter3/VariableDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/VariableDeclaration.html -------------------------------------------------------------------------------- /chapter3/VariableValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/VariableValue.html -------------------------------------------------------------------------------- /chapter3/Zero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/Zero.html -------------------------------------------------------------------------------- /chapter3/multi_return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter3/multi_return.go -------------------------------------------------------------------------------- /chapter4/Arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Arithmetic.html -------------------------------------------------------------------------------- /chapter4/AssignmentWithOperation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/AssignmentWithOperation.html -------------------------------------------------------------------------------- /chapter4/Bitwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Bitwise.html -------------------------------------------------------------------------------- /chapter4/BitwsiseVsLogical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/BitwsiseVsLogical.html -------------------------------------------------------------------------------- /chapter4/Comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Comparison.html -------------------------------------------------------------------------------- /chapter4/ConditionalOp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/ConditionalOp.html -------------------------------------------------------------------------------- /chapter4/Delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Delete.html -------------------------------------------------------------------------------- /chapter4/Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Equality.html -------------------------------------------------------------------------------- /chapter4/Equality2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Equality2.html -------------------------------------------------------------------------------- /chapter4/Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Expression.html -------------------------------------------------------------------------------- /chapter4/Expression2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Expression2.html -------------------------------------------------------------------------------- /chapter4/InOp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/InOp.html -------------------------------------------------------------------------------- /chapter4/LogicalAnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/LogicalAnd.html -------------------------------------------------------------------------------- /chapter4/LogicalNot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/LogicalNot.html -------------------------------------------------------------------------------- /chapter4/LogicalOr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/LogicalOr.html -------------------------------------------------------------------------------- /chapter4/LogicalUsecase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/LogicalUsecase.html -------------------------------------------------------------------------------- /chapter4/Precedence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Precedence.html -------------------------------------------------------------------------------- /chapter4/TypeOf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/TypeOf.html -------------------------------------------------------------------------------- /chapter4/Unary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/Unary.html -------------------------------------------------------------------------------- /chapter4/instanceOf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/instanceOf.html -------------------------------------------------------------------------------- /chapter4/void.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter4/void.html -------------------------------------------------------------------------------- /chapter5/Break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Break.html -------------------------------------------------------------------------------- /chapter5/BreakTwo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/BreakTwo.html -------------------------------------------------------------------------------- /chapter5/Conditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Conditional.html -------------------------------------------------------------------------------- /chapter5/Continue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Continue.html -------------------------------------------------------------------------------- /chapter5/DoWhile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/DoWhile.html -------------------------------------------------------------------------------- /chapter5/ElseIf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ElseIf.html -------------------------------------------------------------------------------- /chapter5/ForIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ForIn.html -------------------------------------------------------------------------------- /chapter5/ForLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ForLoop.html -------------------------------------------------------------------------------- /chapter5/ForOf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ForOf.html -------------------------------------------------------------------------------- /chapter5/ForOfObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ForOfObject.html -------------------------------------------------------------------------------- /chapter5/ForOfSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/ForOfSet.html -------------------------------------------------------------------------------- /chapter5/IfElse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/IfElse.html -------------------------------------------------------------------------------- /chapter5/Loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Loop.html -------------------------------------------------------------------------------- /chapter5/NestedIf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/NestedIf.html -------------------------------------------------------------------------------- /chapter5/NestedLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/NestedLoop.html -------------------------------------------------------------------------------- /chapter5/Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Return.html -------------------------------------------------------------------------------- /chapter5/Statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/Statement.html -------------------------------------------------------------------------------- /chapter5/SwitchDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/SwitchDemo.html -------------------------------------------------------------------------------- /chapter5/TryCatch-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/TryCatch-2.html -------------------------------------------------------------------------------- /chapter5/TryCatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/TryCatch.html -------------------------------------------------------------------------------- /chapter5/UseStrict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/UseStrict.html -------------------------------------------------------------------------------- /chapter5/WhileUseCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter5/WhileUseCase.html -------------------------------------------------------------------------------- /chapter6/DeepClone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/DeepClone.html -------------------------------------------------------------------------------- /chapter6/Extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/Extend.html -------------------------------------------------------------------------------- /chapter6/ExtendedObjectLiteral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/ExtendedObjectLiteral.html -------------------------------------------------------------------------------- /chapter6/GetterSetter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/GetterSetter.html -------------------------------------------------------------------------------- /chapter6/PropertyLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/PropertyLookup.html -------------------------------------------------------------------------------- /chapter6/Prototype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/Prototype.html -------------------------------------------------------------------------------- /chapter6/Query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/Query.html -------------------------------------------------------------------------------- /chapter6/ShorthandMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/ShorthandMethod.html -------------------------------------------------------------------------------- /chapter6/ToJSON.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/ToJSON.html -------------------------------------------------------------------------------- /chapter6/WhyObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter6/WhyObject.html -------------------------------------------------------------------------------- /chapter7/ArrayIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayIndex.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayMethod.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayMethod2.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayMethod3.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayMethod4.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayMethod5.html -------------------------------------------------------------------------------- /chapter7/ArrayToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ArrayToString.html -------------------------------------------------------------------------------- /chapter7/Delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/Delete.html -------------------------------------------------------------------------------- /chapter7/FPExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/FPExample.html -------------------------------------------------------------------------------- /chapter7/FlatMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/FlatMap.html -------------------------------------------------------------------------------- /chapter7/ForEach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ForEach.html -------------------------------------------------------------------------------- /chapter7/MultiDimensionalArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/MultiDimensionalArray.html -------------------------------------------------------------------------------- /chapter7/ObjectArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/ObjectArray.html -------------------------------------------------------------------------------- /chapter7/Sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/Sort.html -------------------------------------------------------------------------------- /chapter7/WhyArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter7/WhyArray.html -------------------------------------------------------------------------------- /chapter8/ArgumentParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/ArgumentParam.html -------------------------------------------------------------------------------- /chapter8/Cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/Cache.html -------------------------------------------------------------------------------- /chapter8/CallApplyBind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/CallApplyBind.html -------------------------------------------------------------------------------- /chapter8/CheckArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/CheckArg.html -------------------------------------------------------------------------------- /chapter8/CheckArgHOF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/CheckArgHOF.html -------------------------------------------------------------------------------- /chapter8/Closure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/Closure.html -------------------------------------------------------------------------------- /chapter8/Closure3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/Closure3.html -------------------------------------------------------------------------------- /chapter8/ClosureAsObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/ClosureAsObject.html -------------------------------------------------------------------------------- /chapter8/CounterWithObj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/CounterWithObj.html -------------------------------------------------------------------------------- /chapter8/DestructuringArg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/DestructuringArg.html -------------------------------------------------------------------------------- /chapter8/FirstClassFun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/FirstClassFun.html -------------------------------------------------------------------------------- /chapter8/FunCon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/FunCon.html -------------------------------------------------------------------------------- /chapter8/FuncProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/FuncProperty.html -------------------------------------------------------------------------------- /chapter8/ImplicitInvocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/ImplicitInvocation.html -------------------------------------------------------------------------------- /chapter8/Invocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/Invocation.html -------------------------------------------------------------------------------- /chapter8/MyModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/MyModule.js -------------------------------------------------------------------------------- /chapter8/NestedFun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/NestedFun.html -------------------------------------------------------------------------------- /chapter8/ParameterPassing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/ParameterPassing.html -------------------------------------------------------------------------------- /chapter8/RestParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/RestParameter.html -------------------------------------------------------------------------------- /chapter8/Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/Return.html -------------------------------------------------------------------------------- /chapter8/RevalingModulePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/RevalingModulePattern.html -------------------------------------------------------------------------------- /chapter8/WhyFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter8/WhyFunction.html -------------------------------------------------------------------------------- /chapter9/ClassDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/ClassDemo.html -------------------------------------------------------------------------------- /chapter9/Composition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/Composition.html -------------------------------------------------------------------------------- /chapter9/Field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/Field.html -------------------------------------------------------------------------------- /chapter9/GetterSetter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/GetterSetter.html -------------------------------------------------------------------------------- /chapter9/Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/Method.html -------------------------------------------------------------------------------- /chapter9/StaticMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/StaticMethod.html -------------------------------------------------------------------------------- /chapter9/WhyClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/chapter9/WhyClass.html -------------------------------------------------------------------------------- /fp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/.DS_Store -------------------------------------------------------------------------------- /fp/ArityChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/ArityChange.html -------------------------------------------------------------------------------- /fp/Compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Compose.html -------------------------------------------------------------------------------- /fp/Compse2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Compse2.html -------------------------------------------------------------------------------- /fp/Curry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Curry.html -------------------------------------------------------------------------------- /fp/CurryUseCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/CurryUseCase.html -------------------------------------------------------------------------------- /fp/Demethodnize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Demethodnize.html -------------------------------------------------------------------------------- /fp/Factorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Factorial.html -------------------------------------------------------------------------------- /fp/Immutable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Immutable.html -------------------------------------------------------------------------------- /fp/Lenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Lenses.html -------------------------------------------------------------------------------- /fp/Logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Logging.html -------------------------------------------------------------------------------- /fp/Memonize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Memonize.html -------------------------------------------------------------------------------- /fp/Negate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Negate.html -------------------------------------------------------------------------------- /fp/Once.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Once.html -------------------------------------------------------------------------------- /fp/OnceAndAfter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/OnceAndAfter.html -------------------------------------------------------------------------------- /fp/Pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Pipe.html -------------------------------------------------------------------------------- /fp/PipeMulti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/PipeMulti.html -------------------------------------------------------------------------------- /fp/Ramda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Ramda.html -------------------------------------------------------------------------------- /fp/Ramda2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/Ramda2.html -------------------------------------------------------------------------------- /fp/TopKFP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/TopKFP.html -------------------------------------------------------------------------------- /fp/TopKImperative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/TopKImperative.html -------------------------------------------------------------------------------- /fp/TopKRamda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/TopKRamda.html -------------------------------------------------------------------------------- /fp/category theory/Either.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/Either.js -------------------------------------------------------------------------------- /fp/category theory/IoMonad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/IoMonad.js -------------------------------------------------------------------------------- /fp/category theory/MayBe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/MayBe.js -------------------------------------------------------------------------------- /fp/category theory/MayBeUsecase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/MayBeUsecase.html -------------------------------------------------------------------------------- /fp/category theory/Monoid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/Monoid.html -------------------------------------------------------------------------------- /fp/category theory/Validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/Validation.html -------------------------------------------------------------------------------- /fp/category theory/Validation2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/Validation2.html -------------------------------------------------------------------------------- /fp/category theory/WhyEither.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WhyEither.html -------------------------------------------------------------------------------- /fp/category theory/WhyFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WhyFunctor.html -------------------------------------------------------------------------------- /fp/category theory/WhyMayBeFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WhyMayBeFunctor.html -------------------------------------------------------------------------------- /fp/category theory/WhyMonad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WhyMonad.html -------------------------------------------------------------------------------- /fp/category theory/WhyWriter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WhyWriter.html -------------------------------------------------------------------------------- /fp/category theory/WriterMonad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/WriterMonad.html -------------------------------------------------------------------------------- /fp/category theory/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/category theory/data.txt -------------------------------------------------------------------------------- /fp/category theory/meta.txt: -------------------------------------------------------------------------------- 1 | data.txt -------------------------------------------------------------------------------- /fp/compose.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/fp/compose.fsx -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.idea/.gitignore -------------------------------------------------------------------------------- /frontend/.idea/frontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.idea/frontend.iml -------------------------------------------------------------------------------- /frontend/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /frontend/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.idea/modules.xml -------------------------------------------------------------------------------- /frontend/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/.idea/vcs.xml -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/next.config.mjs -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/src/app/components/ClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ClassComponent.js -------------------------------------------------------------------------------- /frontend/src/app/components/Conditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/Conditional.js -------------------------------------------------------------------------------- /frontend/src/app/components/ConflictDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ConflictDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/Container.js -------------------------------------------------------------------------------- /frontend/src/app/components/ContextProblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ContextProblem.js -------------------------------------------------------------------------------- /frontend/src/app/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/Counter.js -------------------------------------------------------------------------------- /frontend/src/app/components/CounterTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/CounterTwo.js -------------------------------------------------------------------------------- /frontend/src/app/components/FocusInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/FocusInput.js -------------------------------------------------------------------------------- /frontend/src/app/components/ForwardRefDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ForwardRefDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/FragmentDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/FragmentDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/Greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/Greeting.js -------------------------------------------------------------------------------- /frontend/src/app/components/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/HelloWorld.js -------------------------------------------------------------------------------- /frontend/src/app/components/ImperativeHandleDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ImperativeHandleDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/ImpureDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ImpureDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/JsxDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/JsxDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/ListDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ListDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/MemoDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/MemoDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/MemoProblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/MemoProblem.js -------------------------------------------------------------------------------- /frontend/src/app/components/PortalDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/PortalDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/Profile.js -------------------------------------------------------------------------------- /frontend/src/app/components/RefDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/RefDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/RefEquality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/RefEquality.js -------------------------------------------------------------------------------- /frontend/src/app/components/SuspendDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/SuspendDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/SuspenseWithFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/SuspenseWithFetch.js -------------------------------------------------------------------------------- /frontend/src/app/components/TodoWithReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/TodoWithReducer.js -------------------------------------------------------------------------------- /frontend/src/app/components/UpdateListDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/UpdateListDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/UserForm.js -------------------------------------------------------------------------------- /frontend/src/app/components/context/ContextDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/context/ContextDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/context/DispatchContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/context/DispatchContext.js -------------------------------------------------------------------------------- /frontend/src/app/components/context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/context/ThemeContext.js -------------------------------------------------------------------------------- /frontend/src/app/components/context/TodoWithReducerContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/context/TodoWithReducerContext.js -------------------------------------------------------------------------------- /frontend/src/app/components/customformik/CustomField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/customformik/CustomField.js -------------------------------------------------------------------------------- /frontend/src/app/components/customformik/CustomFormik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/customformik/CustomFormik.js -------------------------------------------------------------------------------- /frontend/src/app/components/customformik/CustomFormikDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/customformik/CustomFormikDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/customformik/CustomFormikWithJSX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/customformik/CustomFormikWithJSX.js -------------------------------------------------------------------------------- /frontend/src/app/components/effect/CleanupDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/effect/CleanupDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/effect/DestroyDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/effect/DestroyDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/effect/EffectDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/effect/EffectDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/effect/FetchTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/effect/FetchTodo.js -------------------------------------------------------------------------------- /frontend/src/app/components/effect/NativeEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/effect/NativeEvent.js -------------------------------------------------------------------------------- /frontend/src/app/components/formik/BasicFormikExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/formik/BasicFormikExample.js -------------------------------------------------------------------------------- /frontend/src/app/components/formik/FormikDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/formik/FormikDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/formik/FormikValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/formik/FormikValidation.js -------------------------------------------------------------------------------- /frontend/src/app/components/hook/ShowUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/hook/ShowUser.js -------------------------------------------------------------------------------- /frontend/src/app/components/hook/useCustomReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/hook/useCustomReducer.js -------------------------------------------------------------------------------- /frontend/src/app/components/hook/useFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/hook/useFetch.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/ComponentViaVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/ComponentViaVariable.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/HocDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/HocDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/TodoList.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/UserList.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/withBorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/withBorder.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/withFetchLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/withFetchLoader.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/hoc/withLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/hoc/withLogger.js -------------------------------------------------------------------------------- /frontend/src/app/components/pattern/render-property/RenderPropertyDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/pattern/render-property/RenderPropertyDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/ref/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/ref/DatePicker.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/ChildList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/ChildList.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/DifferentPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/DifferentPosition.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/DifferentRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/DifferentRoot.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/Fancy.css: -------------------------------------------------------------------------------- 1 | .fancy 2 | { 3 | border:1px solid green; 4 | } -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/RenderCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/RenderCounter.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/RenderDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/RenderDemo.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/SamePositionRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/SamePositionRender.js -------------------------------------------------------------------------------- /frontend/src/app/components/rendering/SameRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/rendering/SameRoot.js -------------------------------------------------------------------------------- /frontend/src/app/components/tab/Tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/tab/Tab.css -------------------------------------------------------------------------------- /frontend/src/app/components/tab/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/tab/Tab.js -------------------------------------------------------------------------------- /frontend/src/app/components/tab/TabDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/components/tab/TabDemo.js -------------------------------------------------------------------------------- /frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/globals.css -------------------------------------------------------------------------------- /frontend/src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/layout.js -------------------------------------------------------------------------------- /frontend/src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/page.js -------------------------------------------------------------------------------- /frontend/src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/frontend/src/app/page.module.css -------------------------------------------------------------------------------- /mongo/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/mongo/command.txt -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.env: -------------------------------------------------------------------------------- 1 | 2 | NEXT_PUBLIC_BACKEND_URL ="http://localhost:3000/api" -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/.gitignore -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/.idea/.gitignore -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/.idea/modules.xml -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.idea/nextjs-redux-mongo-auth.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/.idea/nextjs-redux-mongo-auth.iml -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/.idea/vcs.xml -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/README.md -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/.env: -------------------------------------------------------------------------------- 1 | 2 | NEXT_PUBLIC_BACKEND_URL ="http://localhost:3000/api" -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/StoreProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/StoreProvider.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/api/counter/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/api/counter/route.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/Auth/IsAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/Auth/IsAuth.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/Nav.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/Welcome.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/common/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/common/ConfirmModal.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/counter/Counter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/counter/Counter.module.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/counter/Counter.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/MovieDetailsUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/MovieDetailsUI.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/MovieForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/MovieForm.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/MovieListUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/MovieListUI.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/MovieUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/MovieUI.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/NewMovieInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/NewMovieInput.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/movie/movie.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/movie/movie.module.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/quotes/Quotes.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/quotes/Quotes.module.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/quotes/Quotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/quotes/Quotes.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/review/ReviewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/review/ReviewForm.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/review/ReviewInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/review/ReviewInput.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/review/ReviewList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/review/ReviewList.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/review/ReviewUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/review/ReviewUI.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/components/review/review.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/components/review/review.module.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/icon.ico -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/layout.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/login/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/logout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/logout/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/movies/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/movies/[id]/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/movies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/movies/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/quotes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/quotes/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/styles/globals.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/styles/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/styles/layout.module.css -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/app/verify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/app/verify/page.tsx -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/createAppSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/createAppSlice.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/auth/authApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/auth/authApi.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/auth/authHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/auth/authHook.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/auth/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/auth/authSlice.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/counter/counterAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/counter/counterAPI.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/counter/counterSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/counter/counterSlice.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/movies/movieApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/movies/movieApi.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/quotes/quotesApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/quotes/quotesApiSlice.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/features/review/reviewApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/features/review/reviewApi.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/hooks.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/lib/store.ts -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/next.config.mjs -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/package-lock.json -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/package.json -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/public/logo.svg -------------------------------------------------------------------------------- /nextjs-redux-mongo-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux-mongo-auth/tsconfig.json -------------------------------------------------------------------------------- /nextjs-redux/.env: -------------------------------------------------------------------------------- 1 | 2 | NEXT_PUBLIC_BACKEND_URL ="http://localhost:3000/api" -------------------------------------------------------------------------------- /nextjs-redux/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /nextjs-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.gitignore -------------------------------------------------------------------------------- /nextjs-redux/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.idea/.gitignore -------------------------------------------------------------------------------- /nextjs-redux/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /nextjs-redux/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.idea/modules.xml -------------------------------------------------------------------------------- /nextjs-redux/.idea/nextjs-redux.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.idea/nextjs-redux.iml -------------------------------------------------------------------------------- /nextjs-redux/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/.idea/vcs.xml -------------------------------------------------------------------------------- /nextjs-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/README.md -------------------------------------------------------------------------------- /nextjs-redux/app/StoreProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/StoreProvider.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/action.ts -------------------------------------------------------------------------------- /nextjs-redux/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/admin/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/api/counter/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/api/counter/route.ts -------------------------------------------------------------------------------- /nextjs-redux/app/api/todos/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/api/todos/route.ts -------------------------------------------------------------------------------- /nextjs-redux/app/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/Nav.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/components/TodoCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/TodoCount.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/components/counter/Counter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/counter/Counter.module.css -------------------------------------------------------------------------------- /nextjs-redux/app/components/counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/counter/Counter.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/components/quotes/Quotes.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/quotes/Quotes.module.css -------------------------------------------------------------------------------- /nextjs-redux/app/components/quotes/Quotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/quotes/Quotes.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/components/todos/TodoApiUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/todos/TodoApiUI.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/components/todos/TodosUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/components/todos/TodosUI.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/config/Config.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextjs-redux/app/dashboard/@analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/dashboard/@analytics/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/dashboard/@team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/dashboard/@team/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/dashboard/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/icon.ico -------------------------------------------------------------------------------- /nextjs-redux/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/layout.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/login/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/(marketing)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/(marketing)/dashboard/layout.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/(marketing)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/(marketing)/dashboard/loading.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/(marketing)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/(marketing)/dashboard/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/MovieList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/MovieList.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/[...slug]/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/movies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/movies/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/quotes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/quotes/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/styles/globals.css -------------------------------------------------------------------------------- /nextjs-redux/app/styles/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/styles/layout.module.css -------------------------------------------------------------------------------- /nextjs-redux/app/todos/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/todos/[id]/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/todos/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/todos/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/totaltodo/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/totaltodo/error.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/totaltodo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/totaltodo/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/app/verify/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/app/verify/page.tsx -------------------------------------------------------------------------------- /nextjs-redux/lib/createAppSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/createAppSlice.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/counter/counterAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/counter/counterAPI.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/counter/counterSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/counter/counterSlice.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/movies/movieApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/movies/movieApi.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/quotes/quotesApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/quotes/quotesApiSlice.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/todo/todoSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/todo/todoSlice.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/features/todo/todosApiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/features/todo/todosApiSlice.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/hooks.ts -------------------------------------------------------------------------------- /nextjs-redux/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/lib/store.ts -------------------------------------------------------------------------------- /nextjs-redux/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/middleware.ts -------------------------------------------------------------------------------- /nextjs-redux/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/next.config.mjs -------------------------------------------------------------------------------- /nextjs-redux/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/package-lock.json -------------------------------------------------------------------------------- /nextjs-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/package.json -------------------------------------------------------------------------------- /nextjs-redux/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/public/logo.svg -------------------------------------------------------------------------------- /nextjs-redux/redux-step.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/redux-step.txt -------------------------------------------------------------------------------- /nextjs-redux/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/nextjs-redux/tsconfig.json -------------------------------------------------------------------------------- /postman/React_8thBatch_API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/postman/React_8thBatch_API.postman_collection.json -------------------------------------------------------------------------------- /typescript/CallSig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/CallSig.ts -------------------------------------------------------------------------------- /typescript/ParamProp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/ParamProp.ts -------------------------------------------------------------------------------- /typescript/Protected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/Protected.ts -------------------------------------------------------------------------------- /typescript/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/Stack.ts -------------------------------------------------------------------------------- /typescript/annyo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/annyo.ts -------------------------------------------------------------------------------- /typescript/array_demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/array_demo.ts -------------------------------------------------------------------------------- /typescript/assig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/assig.ts -------------------------------------------------------------------------------- /typescript/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/basic.ts -------------------------------------------------------------------------------- /typescript/class-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/class-demo.ts -------------------------------------------------------------------------------- /typescript/class-exp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/class-exp.ts -------------------------------------------------------------------------------- /typescript/constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/constraint.ts -------------------------------------------------------------------------------- /typescript/constraint2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/constraint2.ts -------------------------------------------------------------------------------- /typescript/construct-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/construct-sig.ts -------------------------------------------------------------------------------- /typescript/every_day_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/every_day_type.ts -------------------------------------------------------------------------------- /typescript/func-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/func-type.ts -------------------------------------------------------------------------------- /typescript/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/function.ts -------------------------------------------------------------------------------- /typescript/gen-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/gen-class.ts -------------------------------------------------------------------------------- /typescript/gen-fun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/gen-fun.ts -------------------------------------------------------------------------------- /typescript/gen-fun2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/gen-fun2.ts -------------------------------------------------------------------------------- /typescript/generic-problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/generic-problem.ts -------------------------------------------------------------------------------- /typescript/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/hello.js -------------------------------------------------------------------------------- /typescript/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/hello.ts -------------------------------------------------------------------------------- /typescript/implement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/implement.ts -------------------------------------------------------------------------------- /typescript/index-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/index-sig.ts -------------------------------------------------------------------------------- /typescript/inteface-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/inteface-types.js -------------------------------------------------------------------------------- /typescript/inteface-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/inteface-types.ts -------------------------------------------------------------------------------- /typescript/keyof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/keyof.ts -------------------------------------------------------------------------------- /typescript/literal-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/literal-type.ts -------------------------------------------------------------------------------- /typescript/narrowing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/narrowing.ts -------------------------------------------------------------------------------- /typescript/object-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/object-literal.ts -------------------------------------------------------------------------------- /typescript/object-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/object-type.js -------------------------------------------------------------------------------- /typescript/object-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/object-type.ts -------------------------------------------------------------------------------- /typescript/optional-par.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/optional-par.ts -------------------------------------------------------------------------------- /typescript/our-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/our-array.ts -------------------------------------------------------------------------------- /typescript/pair-generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/pair-generic.ts -------------------------------------------------------------------------------- /typescript/private.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/private.js -------------------------------------------------------------------------------- /typescript/private.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/private.ts -------------------------------------------------------------------------------- /typescript/problem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/problem.js -------------------------------------------------------------------------------- /typescript/read-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/read-only.ts -------------------------------------------------------------------------------- /typescript/readonly-arr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/readonly-arr.ts -------------------------------------------------------------------------------- /typescript/rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/rest.ts -------------------------------------------------------------------------------- /typescript/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/shape.ts -------------------------------------------------------------------------------- /typescript/tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/tuple.ts -------------------------------------------------------------------------------- /typescript/type-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/type-alias.ts -------------------------------------------------------------------------------- /typescript/type_extends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/type_extends.ts -------------------------------------------------------------------------------- /typescript/void-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringJSReact8thBatch/HEAD/typescript/void-type.ts --------------------------------------------------------------------------------