├── .DS_Store ├── HelloWorld.class ├── HelloWorld.html ├── HelloWorld.java ├── MaxElement.html ├── StaticType ├── StaticType.cpp ├── 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 │ ├── ToDoController.js │ └── UsersController.js ├── middleware │ └── auth.js ├── model │ ├── Movie.js │ ├── Review.js │ ├── ToDo.js │ └── user.js ├── package-lock.json ├── package.json ├── postman │ └── React_5thBatch_API.postman_collection.json ├── public │ ├── images │ │ └── download.txt │ └── stylesheets │ │ └── style.css ├── routes │ ├── index.js │ ├── movies.js │ ├── reviews.js │ ├── todos.js │ └── users.js ├── service │ ├── MovieService.js │ ├── ReviewService.js │ ├── TodoService.js │ └── UserService.js └── views │ ├── error.pug │ ├── index.pug │ └── layout.pug ├── chapter10 ├── Module.js ├── UseEs6.html ├── UseModule.html ├── es6_m.js ├── node_m.js └── use_module.js ├── chapter11 ├── Allocation.html ├── CompareString.html ├── ConsoleAPI.html ├── ConsoleTime.html ├── DateManipulation.html ├── DateTime.html ├── DeepClone.html ├── Error.html ├── EventLoop.html ├── FormatParseDate.html ├── GCExample.html ├── Internationalization.html ├── JSON_Fn.html ├── JSON_Parse.html ├── Map.html ├── MapKey.html ├── Reg2.html ├── Reg_3.html ├── Reg_4.html ├── Reg_5.html ├── Reg_Email.html ├── Set.html ├── SetTImeout.html ├── Timer.html ├── TypedArray.html ├── URL.html └── WhyReg.html ├── chapter12 ├── Generator.html ├── Generator2.html ├── Generator3.html ├── Iterator.html ├── Range.html └── Tree.html ├── chapter13 ├── AsyncAwait.html ├── AsyncAwaitOrder.html ├── AsyncRead.js ├── FetchPromise.html ├── ForAwait.html ├── HowAsync.html ├── Promise.html ├── Promise2.html ├── PromiseErrorHandling.js ├── PromiseReadFile.js ├── PromiseSettle.html ├── ReadFile.js ├── ReadFileCallBack.js ├── ReadFilePromise.js ├── ReadSync.js ├── ReadTwoFilePromise ├── RestCall.html ├── WhyCallBack.js ├── filename.txt ├── hello.txt └── hello2.txt ├── chapter14 ├── AOP.html ├── MVC.html ├── PropertyAttribute.html ├── Reflect.html ├── Seal.html └── Validation.html ├── chapter15 ├── Attribute.html ├── CRUD_DOM.html ├── CSS.html ├── Capturing.html ├── Clock.html ├── CustomEvent.html ├── CustomEventTrigger.html ├── DOMAPI.html ├── DataSetAttribute.html ├── Event.html ├── Geometry.html ├── ImpeativeUi.html ├── LiveDOM.html ├── Location.html ├── Preselected.html ├── PreventDefault.html ├── PseudoSelector.html ├── Query.html ├── Selector.html ├── Storage.html ├── Traversal.html ├── Worker.html ├── XSS.html ├── apicall.js ├── fworker.js ├── script1.js ├── script3.js └── worker.js ├── chapter2 ├── .DS_Store ├── arithmetic.js ├── case_sen.js ├── float_problem.js ├── identifier.js ├── literal.js └── type.js ├── chapter3 ├── AddTwoObject.html ├── ArrayToPrimitive.html ├── DateTime.html ├── Destructuring.html ├── DynamicType.html ├── Equality.html ├── Gloabal.html ├── GlobalScope.html ├── NaN.js ├── NullUndefined.html ├── NumberToBoolean.html ├── ObjectDestruct.html ├── ObjectToPrimitive.html ├── ObjectToType.html ├── Object_StringPritmitive.html ├── Resolution.html ├── StaticType.java ├── StringToNumber.html ├── Swap.html ├── Symbol.html ├── Template.html ├── ToNumber.html ├── TypeConversion.html ├── VarLetConst.html ├── Variable.html ├── boolean.html ├── math.js ├── multi_return.go ├── number_liter.js ├── parallel.py ├── str_demo.html ├── string_method.html ├── string_method2.html └── string_method_3.html ├── chapter4 ├── Arithmetic.html ├── Assignment.html ├── Bitwise.html ├── Comma.html ├── Comparison.html ├── CompoundAssignment.html ├── Conditional.html ├── Delete.html ├── Equality.html ├── Expression.html ├── Function.html ├── Logical.html ├── Logical2.html ├── LooselyEqual.html ├── Operator.html ├── PlusPlusOp.html ├── in.html └── unary-arthmetic.html ├── chapter5 ├── Break.html ├── Compound.html ├── Continue.html ├── ElseIf.html ├── Exam.html ├── ExpressionStatement.html ├── ForEach.html ├── ForEachKeyValue.html ├── ForLoop.html ├── NestedLoop.html ├── Return.html ├── SetMap.html ├── Switch.html ├── Throw.html ├── Throw2.html ├── UseStrict.html ├── While.html ├── WhyLoop.html ├── Yield.html └── go_to_demo.go ├── chapter6 ├── Assign.html ├── Clone.html ├── Create.html ├── CreateTwo.html ├── Enumerate.html ├── GetterSetter.html ├── Object2.html ├── ObjectDemo.html ├── PropertyTesting.html ├── Prototype.html ├── Query.html ├── Serialization.html ├── ShortHand.html └── Spread.html ├── chapter7 ├── ArrayCon.html ├── ArrayFrom.html ├── ArrayMethod.html ├── ArrayMethod2.html ├── ArrayMethod6.html ├── ForEach.html ├── Method3.html ├── Method4.html ├── Method_5.html ├── MultiDimensional.html ├── Reduce.html ├── Sort.html ├── Sparse.html └── WhyArray.html ├── chapter8 ├── Arguments.html ├── ArrayDestructuring.html ├── ArrowFunction.html ├── CallApplyBind.html ├── Closure.html ├── ClosureAsObject.html ├── FunctionAsClass.html ├── FunctionCon.html ├── FunctionProperty.html ├── FunctionValue.html ├── Keys.html ├── Method.html ├── MultipleReturn.html ├── Nested.html ├── ObjectDestr.html ├── Optional.html ├── Parameterized.html ├── Property.html ├── Spread.html ├── TypeCheck.html ├── WhyFunction.html ├── WhyNameSpace.html ├── multiple_return.go └── swap.py ├── chapter9 ├── Abstract.html ├── AddMethod.html ├── BeforeClass.html ├── ClassExpression.html ├── Composition.html ├── GetterSetter.html ├── Human.html ├── Private.html └── StaticMethod.html ├── customreducer └── Reducer.html ├── demo.js ├── demo.ts ├── dyanmic.html ├── dynamic.js ├── fp ├── .gitignore ├── ApplicativeFunctor.html ├── CollectBy.html ├── ComposeWithRamda.html ├── Composition.html ├── Curry.html ├── EitherFunctor.html ├── FunctionalErrorHandling.html ├── Functor.html ├── HOF.html ├── HeadTail.html ├── Identity.html ├── ImperativeErrorHandlingProb.html ├── IoMonad.js ├── Lens.html ├── MathFunction.html ├── MayBeFunctor.html ├── MayBeMonad.html ├── Monad.html ├── MonadProblem.html ├── Monoid.html ├── Once.html ├── Otherwise.html ├── RailyWayOrientedProgramming.html ├── RailywayOrientedProgramming2.html ├── RamdaGroupBy.html ├── RamdaMap.html ├── RamdaMethod.html ├── RamdaMethod2.html ├── RamdaNode.js ├── Ramda_1.html ├── Ramda_Prop.html ├── RealWorldHOF.html ├── ReduceAnything.html ├── Sort.html ├── TopKArray.html ├── TopKFrequentRamda2.html ├── TopKImperative.html ├── TopKRamda.html ├── Unary.html ├── ValidationWithFP.html ├── ValidationWithFP2.html ├── ValidationWithFP3.html ├── ValidationWithFP4.html ├── WhyApplicative.html ├── WhyLen.html ├── WhyMayBeFunctor.html ├── WriterMonad.html ├── WriterMonadProb.html ├── Zip.html ├── data.txt ├── memonized.html ├── meta.txt ├── package-lock.json ├── package.json └── zip.py ├── frontend-redux-typescript ├── .gitignore ├── .idea │ ├── .gitignore │ ├── frontend-redux-typescript.iml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── app │ │ ├── hooks.ts │ │ └── store.ts │ ├── components │ │ ├── HelloWorld.tsx │ │ ├── PrivateRoute.tsx │ │ └── ReviewForm.tsx │ ├── features │ │ ├── auth │ │ │ ├── authApi.ts │ │ │ └── authSlice.ts │ │ ├── counter │ │ │ ├── Counter.module.css │ │ │ ├── Counter.tsx │ │ │ ├── counterAPI.ts │ │ │ ├── counterSlice.spec.ts │ │ │ └── counterSlice.ts │ │ ├── movies │ │ │ ├── Movie.css │ │ │ ├── MovieListUI.tsx │ │ │ ├── MovieUi.tsx │ │ │ ├── movieApi.ts │ │ │ └── movieSlice.ts │ │ ├── reviews │ │ │ ├── Review.css │ │ │ ├── ReviewUi.tsx │ │ │ ├── reviewApi.ts │ │ │ └── reviewSlice.ts │ │ └── todo │ │ │ ├── Todo.css │ │ │ ├── TodoUi.tsx │ │ │ ├── todoAPI.ts │ │ │ └── todoSlice.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── page │ │ ├── HomePage.tsx │ │ ├── LoginPage.tsx │ │ ├── LogoutPage.tsx │ │ ├── MovieDetailPage.tsx │ │ ├── MoviePage.tsx │ │ └── ToDoPage.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── services │ │ └── authService.ts │ ├── setting │ │ ├── API.ts │ │ └── our_axios.ts │ └── setupTests.ts └── tsconfig.json ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Router.css │ ├── components │ ├── ClassComponent.js │ ├── ConditionalRendering.js │ ├── DeclarativeUI.js │ ├── FlushSync.js │ ├── FuncGreeting.js │ ├── GrayBorder.css │ ├── GrayBorder.js │ ├── HelloWorld.css │ ├── HelloWorld.js │ ├── JsxChildren.js │ ├── JsxProperty.js │ ├── ListDemo.js │ ├── PageComponent.css │ ├── PageComponent.js │ ├── RenderWithCondition.js │ ├── RepeatDemo.js │ ├── Tab.css │ ├── Tab.js │ ├── Table.js │ ├── class-component.css │ ├── classedbased │ │ ├── BugComponent.js │ │ ├── ClassBasedHelloWorld.js │ │ ├── ClassCounter.js │ │ ├── ErrorBoundary.js │ │ ├── Greeting.js │ │ ├── LifeCycleDemo.js │ │ ├── LifeCycleTwo.js │ │ └── LifeCycleWrapper.js │ ├── context │ │ ├── ContextData.js │ │ ├── ContextDemo.js │ │ └── reducerWithContext │ │ │ ├── ToDoContext.js │ │ │ └── ToDoListWithContext.js │ ├── effect │ │ ├── ChatRoom.js │ │ └── EffectDemo.js │ ├── formik │ │ ├── CustomFormMik.js │ │ ├── SignupForm.js │ │ └── SignupFormWithValidation.js │ ├── hook │ │ ├── CallBackDemo.js │ │ ├── CustomInput.js │ │ ├── DeferredDemo.js │ │ ├── ExternalStore.js │ │ ├── FocusDemo.js │ │ ├── IdDemo.js │ │ ├── ImperativeHandleDemo.js │ │ ├── InsertionEffectDemo.js │ │ ├── LayoutEffectDemo.js │ │ ├── MemoDemo.js │ │ ├── RefCounter.js │ │ ├── RefCounterProblem.js │ │ ├── StopWatch.js │ │ ├── Transition.css │ │ ├── TransitionDemo.js │ │ ├── fakeName.js │ │ └── todoStore.js │ ├── interaction │ │ ├── EventDemo.js │ │ └── ToDoListEventDemo.js │ ├── list │ │ ├── HeavyList.js │ │ └── InifiniteScroll.js │ ├── pattern │ │ ├── hoc │ │ │ ├── Border.css │ │ │ ├── Border.js │ │ │ ├── HocDemo.js │ │ │ ├── ToDoWithFetchUrl.js │ │ │ ├── useFetchUrl.js │ │ │ ├── useHover.js │ │ │ ├── withHover.js │ │ │ └── withLoader.js │ │ └── render-property │ │ │ ├── MouseTracker.css │ │ │ └── MouseTracker.js │ ├── portal │ │ ├── MyModal.css │ │ ├── MyModal.js │ │ └── MyModalDemo.js │ ├── reducer │ │ ├── CustomReducer.js │ │ ├── ReducerCounter.js │ │ └── ToDoWithReducer.js │ ├── stateful │ │ ├── Counter.js │ │ ├── CounterAlert.js │ │ ├── CounterTwo.js │ │ ├── InputDemo.js │ │ ├── ReRenderIssue.js │ │ └── ToDoCloneIssue.js │ └── thirdparty │ │ └── DatePicker.js │ ├── contact.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── pages │ └── ErrorPage.js │ ├── reportWebVitals.js │ ├── routes │ ├── Contact.js │ ├── Destroy.js │ ├── Edit.js │ ├── Index.js │ └── Root.js │ └── setupTests.js ├── helloWorld.js ├── py_byte_code.py └── typescript ├── Abstract.ts ├── ArrowFunction.ts ├── CallOrConstruct.ts ├── ClassIndexSignature.ts ├── FirstClassClass.ts ├── GetterSetter.ts ├── Human.ts ├── Initialization.ts ├── JSProblem.js ├── OptionalInheritance.ts ├── ParamProperty.ts ├── PrivateField.ts ├── RuntimeThis.ts ├── Sonar.ts ├── Static.ts ├── ThisTypeGuard.ts ├── Visibility.ts ├── WhyGeneric.ts ├── any_function.ts ├── assign.ts ├── call_signature.ts ├── constraint.js ├── constraint.ts ├── construct_singature.ts ├── enum.ts ├── function_type.ts ├── function_type_2.ts ├── functions.ts ├── hello.js ├── hello.ts ├── index_signature.ts ├── interfaces.ts ├── intersect_type.ts ├── intersection.ts ├── literal_type.ts ├── object_type.js ├── object_type.ts ├── objects.ts ├── optional_par.ts ├── push_down_type.ts ├── readonly_Arr.ts ├── rest_parameter.ts ├── this_in_function.ts ├── tuple.js ├── tuple.ts ├── type_alias.ts ├── typegurad.ts ├── types.ts ├── union.ts └── why_gen.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/.DS_Store -------------------------------------------------------------------------------- /HelloWorld.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/HelloWorld.class -------------------------------------------------------------------------------- /HelloWorld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/HelloWorld.html -------------------------------------------------------------------------------- /HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/HelloWorld.java -------------------------------------------------------------------------------- /MaxElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/MaxElement.html -------------------------------------------------------------------------------- /StaticType: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/StaticType -------------------------------------------------------------------------------- /StaticType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/StaticType.cpp -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.idea/.gitignore -------------------------------------------------------------------------------- /backend/.idea/backend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.idea/backend.iml -------------------------------------------------------------------------------- /backend/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.idea/modules.xml -------------------------------------------------------------------------------- /backend/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/.idea/vcs.xml -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/bin/www -------------------------------------------------------------------------------- /backend/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/config/Config.js -------------------------------------------------------------------------------- /backend/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/config/database.js -------------------------------------------------------------------------------- /backend/controller/MovieController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/controller/MovieController.js -------------------------------------------------------------------------------- /backend/controller/ReviewController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/controller/ReviewController.js -------------------------------------------------------------------------------- /backend/controller/ToDoController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/controller/ToDoController.js -------------------------------------------------------------------------------- /backend/controller/UsersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/controller/UsersController.js -------------------------------------------------------------------------------- /backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/middleware/auth.js -------------------------------------------------------------------------------- /backend/model/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/model/Movie.js -------------------------------------------------------------------------------- /backend/model/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/model/Review.js -------------------------------------------------------------------------------- /backend/model/ToDo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/model/ToDo.js -------------------------------------------------------------------------------- /backend/model/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/model/user.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/postman/React_5thBatch_API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/postman/React_5thBatch_API.postman_collection.json -------------------------------------------------------------------------------- /backend/public/images/download.txt: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /backend/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/public/stylesheets/style.css -------------------------------------------------------------------------------- /backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/routes/index.js -------------------------------------------------------------------------------- /backend/routes/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/routes/movies.js -------------------------------------------------------------------------------- /backend/routes/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/routes/reviews.js -------------------------------------------------------------------------------- /backend/routes/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/routes/todos.js -------------------------------------------------------------------------------- /backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/routes/users.js -------------------------------------------------------------------------------- /backend/service/MovieService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/service/MovieService.js -------------------------------------------------------------------------------- /backend/service/ReviewService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/service/ReviewService.js -------------------------------------------------------------------------------- /backend/service/TodoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/service/TodoService.js -------------------------------------------------------------------------------- /backend/service/UserService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/service/UserService.js -------------------------------------------------------------------------------- /backend/views/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/views/error.pug -------------------------------------------------------------------------------- /backend/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/views/index.pug -------------------------------------------------------------------------------- /backend/views/layout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/backend/views/layout.pug -------------------------------------------------------------------------------- /chapter10/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/Module.js -------------------------------------------------------------------------------- /chapter10/UseEs6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/UseEs6.html -------------------------------------------------------------------------------- /chapter10/UseModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/UseModule.html -------------------------------------------------------------------------------- /chapter10/es6_m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/es6_m.js -------------------------------------------------------------------------------- /chapter10/node_m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/node_m.js -------------------------------------------------------------------------------- /chapter10/use_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter10/use_module.js -------------------------------------------------------------------------------- /chapter11/Allocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Allocation.html -------------------------------------------------------------------------------- /chapter11/CompareString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/CompareString.html -------------------------------------------------------------------------------- /chapter11/ConsoleAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/ConsoleAPI.html -------------------------------------------------------------------------------- /chapter11/ConsoleTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/ConsoleTime.html -------------------------------------------------------------------------------- /chapter11/DateManipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/DateManipulation.html -------------------------------------------------------------------------------- /chapter11/DateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/DateTime.html -------------------------------------------------------------------------------- /chapter11/DeepClone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/DeepClone.html -------------------------------------------------------------------------------- /chapter11/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Error.html -------------------------------------------------------------------------------- /chapter11/EventLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/EventLoop.html -------------------------------------------------------------------------------- /chapter11/FormatParseDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/FormatParseDate.html -------------------------------------------------------------------------------- /chapter11/GCExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/GCExample.html -------------------------------------------------------------------------------- /chapter11/Internationalization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Internationalization.html -------------------------------------------------------------------------------- /chapter11/JSON_Fn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/JSON_Fn.html -------------------------------------------------------------------------------- /chapter11/JSON_Parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/JSON_Parse.html -------------------------------------------------------------------------------- /chapter11/Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Map.html -------------------------------------------------------------------------------- /chapter11/MapKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/MapKey.html -------------------------------------------------------------------------------- /chapter11/Reg2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Reg2.html -------------------------------------------------------------------------------- /chapter11/Reg_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Reg_3.html -------------------------------------------------------------------------------- /chapter11/Reg_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Reg_4.html -------------------------------------------------------------------------------- /chapter11/Reg_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Reg_5.html -------------------------------------------------------------------------------- /chapter11/Reg_Email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Reg_Email.html -------------------------------------------------------------------------------- /chapter11/Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Set.html -------------------------------------------------------------------------------- /chapter11/SetTImeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/SetTImeout.html -------------------------------------------------------------------------------- /chapter11/Timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/Timer.html -------------------------------------------------------------------------------- /chapter11/TypedArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/TypedArray.html -------------------------------------------------------------------------------- /chapter11/URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/URL.html -------------------------------------------------------------------------------- /chapter11/WhyReg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter11/WhyReg.html -------------------------------------------------------------------------------- /chapter12/Generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Generator.html -------------------------------------------------------------------------------- /chapter12/Generator2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Generator2.html -------------------------------------------------------------------------------- /chapter12/Generator3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Generator3.html -------------------------------------------------------------------------------- /chapter12/Iterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Iterator.html -------------------------------------------------------------------------------- /chapter12/Range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Range.html -------------------------------------------------------------------------------- /chapter12/Tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter12/Tree.html -------------------------------------------------------------------------------- /chapter13/AsyncAwait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/AsyncAwait.html -------------------------------------------------------------------------------- /chapter13/AsyncAwaitOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/AsyncAwaitOrder.html -------------------------------------------------------------------------------- /chapter13/AsyncRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/AsyncRead.js -------------------------------------------------------------------------------- /chapter13/FetchPromise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/FetchPromise.html -------------------------------------------------------------------------------- /chapter13/ForAwait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ForAwait.html -------------------------------------------------------------------------------- /chapter13/HowAsync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/HowAsync.html -------------------------------------------------------------------------------- /chapter13/Promise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/Promise.html -------------------------------------------------------------------------------- /chapter13/Promise2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/Promise2.html -------------------------------------------------------------------------------- /chapter13/PromiseErrorHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/PromiseErrorHandling.js -------------------------------------------------------------------------------- /chapter13/PromiseReadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/PromiseReadFile.js -------------------------------------------------------------------------------- /chapter13/PromiseSettle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/PromiseSettle.html -------------------------------------------------------------------------------- /chapter13/ReadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ReadFile.js -------------------------------------------------------------------------------- /chapter13/ReadFileCallBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ReadFileCallBack.js -------------------------------------------------------------------------------- /chapter13/ReadFilePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ReadFilePromise.js -------------------------------------------------------------------------------- /chapter13/ReadSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ReadSync.js -------------------------------------------------------------------------------- /chapter13/ReadTwoFilePromise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/ReadTwoFilePromise -------------------------------------------------------------------------------- /chapter13/RestCall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/RestCall.html -------------------------------------------------------------------------------- /chapter13/WhyCallBack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/WhyCallBack.js -------------------------------------------------------------------------------- /chapter13/filename.txt: -------------------------------------------------------------------------------- 1 | hello.txt -------------------------------------------------------------------------------- /chapter13/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/hello.txt -------------------------------------------------------------------------------- /chapter13/hello2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter13/hello2.txt -------------------------------------------------------------------------------- /chapter14/AOP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/AOP.html -------------------------------------------------------------------------------- /chapter14/MVC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/MVC.html -------------------------------------------------------------------------------- /chapter14/PropertyAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/PropertyAttribute.html -------------------------------------------------------------------------------- /chapter14/Reflect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/Reflect.html -------------------------------------------------------------------------------- /chapter14/Seal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/Seal.html -------------------------------------------------------------------------------- /chapter14/Validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter14/Validation.html -------------------------------------------------------------------------------- /chapter15/Attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Attribute.html -------------------------------------------------------------------------------- /chapter15/CRUD_DOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/CRUD_DOM.html -------------------------------------------------------------------------------- /chapter15/CSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/CSS.html -------------------------------------------------------------------------------- /chapter15/Capturing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Capturing.html -------------------------------------------------------------------------------- /chapter15/Clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Clock.html -------------------------------------------------------------------------------- /chapter15/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/CustomEvent.html -------------------------------------------------------------------------------- /chapter15/CustomEventTrigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/CustomEventTrigger.html -------------------------------------------------------------------------------- /chapter15/DOMAPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/DOMAPI.html -------------------------------------------------------------------------------- /chapter15/DataSetAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/DataSetAttribute.html -------------------------------------------------------------------------------- /chapter15/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Event.html -------------------------------------------------------------------------------- /chapter15/Geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Geometry.html -------------------------------------------------------------------------------- /chapter15/ImpeativeUi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/ImpeativeUi.html -------------------------------------------------------------------------------- /chapter15/LiveDOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/LiveDOM.html -------------------------------------------------------------------------------- /chapter15/Location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Location.html -------------------------------------------------------------------------------- /chapter15/Preselected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Preselected.html -------------------------------------------------------------------------------- /chapter15/PreventDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/PreventDefault.html -------------------------------------------------------------------------------- /chapter15/PseudoSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/PseudoSelector.html -------------------------------------------------------------------------------- /chapter15/Query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Query.html -------------------------------------------------------------------------------- /chapter15/Selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Selector.html -------------------------------------------------------------------------------- /chapter15/Storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Storage.html -------------------------------------------------------------------------------- /chapter15/Traversal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Traversal.html -------------------------------------------------------------------------------- /chapter15/Worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/Worker.html -------------------------------------------------------------------------------- /chapter15/XSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/XSS.html -------------------------------------------------------------------------------- /chapter15/apicall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/apicall.js -------------------------------------------------------------------------------- /chapter15/fworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/fworker.js -------------------------------------------------------------------------------- /chapter15/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/script1.js -------------------------------------------------------------------------------- /chapter15/script3.js: -------------------------------------------------------------------------------- 1 | console.log('Script 3 run by async'); -------------------------------------------------------------------------------- /chapter15/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter15/worker.js -------------------------------------------------------------------------------- /chapter2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/.DS_Store -------------------------------------------------------------------------------- /chapter2/arithmetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/arithmetic.js -------------------------------------------------------------------------------- /chapter2/case_sen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/case_sen.js -------------------------------------------------------------------------------- /chapter2/float_problem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/float_problem.js -------------------------------------------------------------------------------- /chapter2/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/identifier.js -------------------------------------------------------------------------------- /chapter2/literal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/literal.js -------------------------------------------------------------------------------- /chapter2/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter2/type.js -------------------------------------------------------------------------------- /chapter3/AddTwoObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/AddTwoObject.html -------------------------------------------------------------------------------- /chapter3/ArrayToPrimitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/ArrayToPrimitive.html -------------------------------------------------------------------------------- /chapter3/DateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/DateTime.html -------------------------------------------------------------------------------- /chapter3/Destructuring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Destructuring.html -------------------------------------------------------------------------------- /chapter3/DynamicType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/DynamicType.html -------------------------------------------------------------------------------- /chapter3/Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Equality.html -------------------------------------------------------------------------------- /chapter3/Gloabal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Gloabal.html -------------------------------------------------------------------------------- /chapter3/GlobalScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/GlobalScope.html -------------------------------------------------------------------------------- /chapter3/NaN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/NaN.js -------------------------------------------------------------------------------- /chapter3/NullUndefined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/NullUndefined.html -------------------------------------------------------------------------------- /chapter3/NumberToBoolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/NumberToBoolean.html -------------------------------------------------------------------------------- /chapter3/ObjectDestruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/ObjectDestruct.html -------------------------------------------------------------------------------- /chapter3/ObjectToPrimitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/ObjectToPrimitive.html -------------------------------------------------------------------------------- /chapter3/ObjectToType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/ObjectToType.html -------------------------------------------------------------------------------- /chapter3/Object_StringPritmitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Object_StringPritmitive.html -------------------------------------------------------------------------------- /chapter3/Resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Resolution.html -------------------------------------------------------------------------------- /chapter3/StaticType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/StaticType.java -------------------------------------------------------------------------------- /chapter3/StringToNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/StringToNumber.html -------------------------------------------------------------------------------- /chapter3/Swap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Swap.html -------------------------------------------------------------------------------- /chapter3/Symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Symbol.html -------------------------------------------------------------------------------- /chapter3/Template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Template.html -------------------------------------------------------------------------------- /chapter3/ToNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/ToNumber.html -------------------------------------------------------------------------------- /chapter3/TypeConversion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/TypeConversion.html -------------------------------------------------------------------------------- /chapter3/VarLetConst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/VarLetConst.html -------------------------------------------------------------------------------- /chapter3/Variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/Variable.html -------------------------------------------------------------------------------- /chapter3/boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/boolean.html -------------------------------------------------------------------------------- /chapter3/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/math.js -------------------------------------------------------------------------------- /chapter3/multi_return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/multi_return.go -------------------------------------------------------------------------------- /chapter3/number_liter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/number_liter.js -------------------------------------------------------------------------------- /chapter3/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/parallel.py -------------------------------------------------------------------------------- /chapter3/str_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/str_demo.html -------------------------------------------------------------------------------- /chapter3/string_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/string_method.html -------------------------------------------------------------------------------- /chapter3/string_method2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/string_method2.html -------------------------------------------------------------------------------- /chapter3/string_method_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter3/string_method_3.html -------------------------------------------------------------------------------- /chapter4/Arithmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Arithmetic.html -------------------------------------------------------------------------------- /chapter4/Assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Assignment.html -------------------------------------------------------------------------------- /chapter4/Bitwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Bitwise.html -------------------------------------------------------------------------------- /chapter4/Comma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Comma.html -------------------------------------------------------------------------------- /chapter4/Comparison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Comparison.html -------------------------------------------------------------------------------- /chapter4/CompoundAssignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/CompoundAssignment.html -------------------------------------------------------------------------------- /chapter4/Conditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Conditional.html -------------------------------------------------------------------------------- /chapter4/Delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Delete.html -------------------------------------------------------------------------------- /chapter4/Equality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Equality.html -------------------------------------------------------------------------------- /chapter4/Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Expression.html -------------------------------------------------------------------------------- /chapter4/Function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Function.html -------------------------------------------------------------------------------- /chapter4/Logical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Logical.html -------------------------------------------------------------------------------- /chapter4/Logical2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Logical2.html -------------------------------------------------------------------------------- /chapter4/LooselyEqual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/LooselyEqual.html -------------------------------------------------------------------------------- /chapter4/Operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/Operator.html -------------------------------------------------------------------------------- /chapter4/PlusPlusOp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/PlusPlusOp.html -------------------------------------------------------------------------------- /chapter4/in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/in.html -------------------------------------------------------------------------------- /chapter4/unary-arthmetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter4/unary-arthmetic.html -------------------------------------------------------------------------------- /chapter5/Break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Break.html -------------------------------------------------------------------------------- /chapter5/Compound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Compound.html -------------------------------------------------------------------------------- /chapter5/Continue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Continue.html -------------------------------------------------------------------------------- /chapter5/ElseIf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/ElseIf.html -------------------------------------------------------------------------------- /chapter5/Exam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Exam.html -------------------------------------------------------------------------------- /chapter5/ExpressionStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/ExpressionStatement.html -------------------------------------------------------------------------------- /chapter5/ForEach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/ForEach.html -------------------------------------------------------------------------------- /chapter5/ForEachKeyValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/ForEachKeyValue.html -------------------------------------------------------------------------------- /chapter5/ForLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/ForLoop.html -------------------------------------------------------------------------------- /chapter5/NestedLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/NestedLoop.html -------------------------------------------------------------------------------- /chapter5/Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Return.html -------------------------------------------------------------------------------- /chapter5/SetMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/SetMap.html -------------------------------------------------------------------------------- /chapter5/Switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Switch.html -------------------------------------------------------------------------------- /chapter5/Throw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Throw.html -------------------------------------------------------------------------------- /chapter5/Throw2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Throw2.html -------------------------------------------------------------------------------- /chapter5/UseStrict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/UseStrict.html -------------------------------------------------------------------------------- /chapter5/While.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/While.html -------------------------------------------------------------------------------- /chapter5/WhyLoop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/WhyLoop.html -------------------------------------------------------------------------------- /chapter5/Yield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/Yield.html -------------------------------------------------------------------------------- /chapter5/go_to_demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter5/go_to_demo.go -------------------------------------------------------------------------------- /chapter6/Assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Assign.html -------------------------------------------------------------------------------- /chapter6/Clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Clone.html -------------------------------------------------------------------------------- /chapter6/Create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Create.html -------------------------------------------------------------------------------- /chapter6/CreateTwo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/CreateTwo.html -------------------------------------------------------------------------------- /chapter6/Enumerate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Enumerate.html -------------------------------------------------------------------------------- /chapter6/GetterSetter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/GetterSetter.html -------------------------------------------------------------------------------- /chapter6/Object2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Object2.html -------------------------------------------------------------------------------- /chapter6/ObjectDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/ObjectDemo.html -------------------------------------------------------------------------------- /chapter6/PropertyTesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/PropertyTesting.html -------------------------------------------------------------------------------- /chapter6/Prototype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Prototype.html -------------------------------------------------------------------------------- /chapter6/Query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Query.html -------------------------------------------------------------------------------- /chapter6/Serialization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Serialization.html -------------------------------------------------------------------------------- /chapter6/ShortHand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/ShortHand.html -------------------------------------------------------------------------------- /chapter6/Spread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter6/Spread.html -------------------------------------------------------------------------------- /chapter7/ArrayCon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ArrayCon.html -------------------------------------------------------------------------------- /chapter7/ArrayFrom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ArrayFrom.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ArrayMethod.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ArrayMethod2.html -------------------------------------------------------------------------------- /chapter7/ArrayMethod6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ArrayMethod6.html -------------------------------------------------------------------------------- /chapter7/ForEach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/ForEach.html -------------------------------------------------------------------------------- /chapter7/Method3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Method3.html -------------------------------------------------------------------------------- /chapter7/Method4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Method4.html -------------------------------------------------------------------------------- /chapter7/Method_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Method_5.html -------------------------------------------------------------------------------- /chapter7/MultiDimensional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/MultiDimensional.html -------------------------------------------------------------------------------- /chapter7/Reduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Reduce.html -------------------------------------------------------------------------------- /chapter7/Sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Sort.html -------------------------------------------------------------------------------- /chapter7/Sparse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/Sparse.html -------------------------------------------------------------------------------- /chapter7/WhyArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter7/WhyArray.html -------------------------------------------------------------------------------- /chapter8/Arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Arguments.html -------------------------------------------------------------------------------- /chapter8/ArrayDestructuring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/ArrayDestructuring.html -------------------------------------------------------------------------------- /chapter8/ArrowFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/ArrowFunction.html -------------------------------------------------------------------------------- /chapter8/CallApplyBind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/CallApplyBind.html -------------------------------------------------------------------------------- /chapter8/Closure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Closure.html -------------------------------------------------------------------------------- /chapter8/ClosureAsObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/ClosureAsObject.html -------------------------------------------------------------------------------- /chapter8/FunctionAsClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/FunctionAsClass.html -------------------------------------------------------------------------------- /chapter8/FunctionCon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/FunctionCon.html -------------------------------------------------------------------------------- /chapter8/FunctionProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/FunctionProperty.html -------------------------------------------------------------------------------- /chapter8/FunctionValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/FunctionValue.html -------------------------------------------------------------------------------- /chapter8/Keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Keys.html -------------------------------------------------------------------------------- /chapter8/Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Method.html -------------------------------------------------------------------------------- /chapter8/MultipleReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/MultipleReturn.html -------------------------------------------------------------------------------- /chapter8/Nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Nested.html -------------------------------------------------------------------------------- /chapter8/ObjectDestr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/ObjectDestr.html -------------------------------------------------------------------------------- /chapter8/Optional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Optional.html -------------------------------------------------------------------------------- /chapter8/Parameterized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Parameterized.html -------------------------------------------------------------------------------- /chapter8/Property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Property.html -------------------------------------------------------------------------------- /chapter8/Spread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/Spread.html -------------------------------------------------------------------------------- /chapter8/TypeCheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/TypeCheck.html -------------------------------------------------------------------------------- /chapter8/WhyFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/WhyFunction.html -------------------------------------------------------------------------------- /chapter8/WhyNameSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/WhyNameSpace.html -------------------------------------------------------------------------------- /chapter8/multiple_return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/multiple_return.go -------------------------------------------------------------------------------- /chapter8/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter8/swap.py -------------------------------------------------------------------------------- /chapter9/Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/Abstract.html -------------------------------------------------------------------------------- /chapter9/AddMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/AddMethod.html -------------------------------------------------------------------------------- /chapter9/BeforeClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/BeforeClass.html -------------------------------------------------------------------------------- /chapter9/ClassExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/ClassExpression.html -------------------------------------------------------------------------------- /chapter9/Composition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/Composition.html -------------------------------------------------------------------------------- /chapter9/GetterSetter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/GetterSetter.html -------------------------------------------------------------------------------- /chapter9/Human.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/Human.html -------------------------------------------------------------------------------- /chapter9/Private.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/Private.html -------------------------------------------------------------------------------- /chapter9/StaticMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/chapter9/StaticMethod.html -------------------------------------------------------------------------------- /customreducer/Reducer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/customreducer/Reducer.html -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- 1 | var a = 10; 2 | console.log("A is ", a); 3 | -------------------------------------------------------------------------------- /demo.ts: -------------------------------------------------------------------------------- 1 | let a :number = 10; 2 | console.log("A is ",a); -------------------------------------------------------------------------------- /dyanmic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/dyanmic.html -------------------------------------------------------------------------------- /dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/dynamic.js -------------------------------------------------------------------------------- /fp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/.gitignore -------------------------------------------------------------------------------- /fp/ApplicativeFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ApplicativeFunctor.html -------------------------------------------------------------------------------- /fp/CollectBy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/CollectBy.html -------------------------------------------------------------------------------- /fp/ComposeWithRamda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ComposeWithRamda.html -------------------------------------------------------------------------------- /fp/Composition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Composition.html -------------------------------------------------------------------------------- /fp/Curry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Curry.html -------------------------------------------------------------------------------- /fp/EitherFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/EitherFunctor.html -------------------------------------------------------------------------------- /fp/FunctionalErrorHandling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/FunctionalErrorHandling.html -------------------------------------------------------------------------------- /fp/Functor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Functor.html -------------------------------------------------------------------------------- /fp/HOF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/HOF.html -------------------------------------------------------------------------------- /fp/HeadTail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/HeadTail.html -------------------------------------------------------------------------------- /fp/Identity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Identity.html -------------------------------------------------------------------------------- /fp/ImperativeErrorHandlingProb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ImperativeErrorHandlingProb.html -------------------------------------------------------------------------------- /fp/IoMonad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/IoMonad.js -------------------------------------------------------------------------------- /fp/Lens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Lens.html -------------------------------------------------------------------------------- /fp/MathFunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/MathFunction.html -------------------------------------------------------------------------------- /fp/MayBeFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/MayBeFunctor.html -------------------------------------------------------------------------------- /fp/MayBeMonad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/MayBeMonad.html -------------------------------------------------------------------------------- /fp/Monad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Monad.html -------------------------------------------------------------------------------- /fp/MonadProblem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/MonadProblem.html -------------------------------------------------------------------------------- /fp/Monoid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Monoid.html -------------------------------------------------------------------------------- /fp/Once.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Once.html -------------------------------------------------------------------------------- /fp/Otherwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Otherwise.html -------------------------------------------------------------------------------- /fp/RailyWayOrientedProgramming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RailyWayOrientedProgramming.html -------------------------------------------------------------------------------- /fp/RailywayOrientedProgramming2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RailywayOrientedProgramming2.html -------------------------------------------------------------------------------- /fp/RamdaGroupBy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RamdaGroupBy.html -------------------------------------------------------------------------------- /fp/RamdaMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RamdaMap.html -------------------------------------------------------------------------------- /fp/RamdaMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RamdaMethod.html -------------------------------------------------------------------------------- /fp/RamdaMethod2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RamdaMethod2.html -------------------------------------------------------------------------------- /fp/RamdaNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RamdaNode.js -------------------------------------------------------------------------------- /fp/Ramda_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Ramda_1.html -------------------------------------------------------------------------------- /fp/Ramda_Prop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Ramda_Prop.html -------------------------------------------------------------------------------- /fp/RealWorldHOF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/RealWorldHOF.html -------------------------------------------------------------------------------- /fp/ReduceAnything.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ReduceAnything.html -------------------------------------------------------------------------------- /fp/Sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Sort.html -------------------------------------------------------------------------------- /fp/TopKArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/TopKArray.html -------------------------------------------------------------------------------- /fp/TopKFrequentRamda2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/TopKFrequentRamda2.html -------------------------------------------------------------------------------- /fp/TopKImperative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/TopKImperative.html -------------------------------------------------------------------------------- /fp/TopKRamda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/TopKRamda.html -------------------------------------------------------------------------------- /fp/Unary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Unary.html -------------------------------------------------------------------------------- /fp/ValidationWithFP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ValidationWithFP.html -------------------------------------------------------------------------------- /fp/ValidationWithFP2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ValidationWithFP2.html -------------------------------------------------------------------------------- /fp/ValidationWithFP3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ValidationWithFP3.html -------------------------------------------------------------------------------- /fp/ValidationWithFP4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/ValidationWithFP4.html -------------------------------------------------------------------------------- /fp/WhyApplicative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/WhyApplicative.html -------------------------------------------------------------------------------- /fp/WhyLen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/WhyLen.html -------------------------------------------------------------------------------- /fp/WhyMayBeFunctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/WhyMayBeFunctor.html -------------------------------------------------------------------------------- /fp/WriterMonad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/WriterMonad.html -------------------------------------------------------------------------------- /fp/WriterMonadProb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/WriterMonadProb.html -------------------------------------------------------------------------------- /fp/Zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/Zip.html -------------------------------------------------------------------------------- /fp/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/data.txt -------------------------------------------------------------------------------- /fp/memonized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/memonized.html -------------------------------------------------------------------------------- /fp/meta.txt: -------------------------------------------------------------------------------- 1 | data.txt -------------------------------------------------------------------------------- /fp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/package-lock.json -------------------------------------------------------------------------------- /fp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/package.json -------------------------------------------------------------------------------- /fp/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/fp/zip.py -------------------------------------------------------------------------------- /frontend-redux-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.gitignore -------------------------------------------------------------------------------- /frontend-redux-typescript/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.idea/.gitignore -------------------------------------------------------------------------------- /frontend-redux-typescript/.idea/frontend-redux-typescript.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.idea/frontend-redux-typescript.iml -------------------------------------------------------------------------------- /frontend-redux-typescript/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /frontend-redux-typescript/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.idea/modules.xml -------------------------------------------------------------------------------- /frontend-redux-typescript/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/.idea/vcs.xml -------------------------------------------------------------------------------- /frontend-redux-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/README.md -------------------------------------------------------------------------------- /frontend-redux-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/package-lock.json -------------------------------------------------------------------------------- /frontend-redux-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/package.json -------------------------------------------------------------------------------- /frontend-redux-typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/favicon.ico -------------------------------------------------------------------------------- /frontend-redux-typescript/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/index.html -------------------------------------------------------------------------------- /frontend-redux-typescript/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/logo192.png -------------------------------------------------------------------------------- /frontend-redux-typescript/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/logo512.png -------------------------------------------------------------------------------- /frontend-redux-typescript/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/manifest.json -------------------------------------------------------------------------------- /frontend-redux-typescript/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/public/robots.txt -------------------------------------------------------------------------------- /frontend-redux-typescript/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/App.css -------------------------------------------------------------------------------- /frontend-redux-typescript/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/App.test.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/App.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/app/hooks.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/app/store.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/components/HelloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/components/HelloWorld.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/components/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/components/PrivateRoute.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/components/ReviewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/components/ReviewForm.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/auth/authApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/auth/authApi.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/auth/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/auth/authSlice.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/counter/Counter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/counter/Counter.module.css -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/counter/Counter.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/counter/counterAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/counter/counterAPI.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/counter/counterSlice.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/counter/counterSlice.spec.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/counter/counterSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/counter/counterSlice.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/movies/Movie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/movies/Movie.css -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/movies/MovieListUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/movies/MovieListUI.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/movies/MovieUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/movies/MovieUi.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/movies/movieApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/movies/movieApi.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/movies/movieSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/movies/movieSlice.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/reviews/Review.css: -------------------------------------------------------------------------------- 1 | .review 2 | { 3 | padding-top: 10px; 4 | } -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/reviews/ReviewUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/reviews/ReviewUi.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/reviews/reviewApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/reviews/reviewApi.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/reviews/reviewSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/reviews/reviewSlice.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/todo/Todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/todo/Todo.css -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/todo/TodoUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/todo/TodoUi.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/todo/todoAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/todo/todoAPI.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/features/todo/todoSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/features/todo/todoSlice.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/index.css -------------------------------------------------------------------------------- /frontend-redux-typescript/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/index.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/logo.svg -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/HomePage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/LoginPage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/LogoutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/LogoutPage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/MovieDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/MovieDetailPage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/MoviePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/MoviePage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/page/ToDoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/page/ToDoPage.tsx -------------------------------------------------------------------------------- /frontend-redux-typescript/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend-redux-typescript/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/services/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/services/authService.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/setting/API.ts: -------------------------------------------------------------------------------- 1 | export const API_URL = "http://localhost:3000/api"; -------------------------------------------------------------------------------- /frontend-redux-typescript/src/setting/our_axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/setting/our_axios.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/src/setupTests.ts -------------------------------------------------------------------------------- /frontend-redux-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend-redux-typescript/tsconfig.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/Router.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/Router.css -------------------------------------------------------------------------------- /frontend/src/components/ClassComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/ClassComponent.js -------------------------------------------------------------------------------- /frontend/src/components/ConditionalRendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/ConditionalRendering.js -------------------------------------------------------------------------------- /frontend/src/components/DeclarativeUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/DeclarativeUI.js -------------------------------------------------------------------------------- /frontend/src/components/FlushSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/FlushSync.js -------------------------------------------------------------------------------- /frontend/src/components/FuncGreeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/FuncGreeting.js -------------------------------------------------------------------------------- /frontend/src/components/GrayBorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/GrayBorder.css -------------------------------------------------------------------------------- /frontend/src/components/GrayBorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/GrayBorder.js -------------------------------------------------------------------------------- /frontend/src/components/HelloWorld.css: -------------------------------------------------------------------------------- 1 | .avatar 2 | { 3 | border-radius: 50%; 4 | } -------------------------------------------------------------------------------- /frontend/src/components/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/HelloWorld.js -------------------------------------------------------------------------------- /frontend/src/components/JsxChildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/JsxChildren.js -------------------------------------------------------------------------------- /frontend/src/components/JsxProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/JsxProperty.js -------------------------------------------------------------------------------- /frontend/src/components/ListDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/ListDemo.js -------------------------------------------------------------------------------- /frontend/src/components/PageComponent.css: -------------------------------------------------------------------------------- 1 | .avatar 2 | { 3 | border-radius: 50%; 4 | } -------------------------------------------------------------------------------- /frontend/src/components/PageComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/PageComponent.js -------------------------------------------------------------------------------- /frontend/src/components/RenderWithCondition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/RenderWithCondition.js -------------------------------------------------------------------------------- /frontend/src/components/RepeatDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/RepeatDemo.js -------------------------------------------------------------------------------- /frontend/src/components/Tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/Tab.css -------------------------------------------------------------------------------- /frontend/src/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/Tab.js -------------------------------------------------------------------------------- /frontend/src/components/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/Table.js -------------------------------------------------------------------------------- /frontend/src/components/class-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/class-component.css -------------------------------------------------------------------------------- /frontend/src/components/classedbased/BugComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/BugComponent.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/ClassBasedHelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/ClassBasedHelloWorld.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/ClassCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/ClassCounter.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/ErrorBoundary.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/Greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/Greeting.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/LifeCycleDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/LifeCycleDemo.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/LifeCycleTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/LifeCycleTwo.js -------------------------------------------------------------------------------- /frontend/src/components/classedbased/LifeCycleWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/classedbased/LifeCycleWrapper.js -------------------------------------------------------------------------------- /frontend/src/components/context/ContextData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/context/ContextData.js -------------------------------------------------------------------------------- /frontend/src/components/context/ContextDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/context/ContextDemo.js -------------------------------------------------------------------------------- /frontend/src/components/context/reducerWithContext/ToDoContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/context/reducerWithContext/ToDoContext.js -------------------------------------------------------------------------------- /frontend/src/components/context/reducerWithContext/ToDoListWithContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/context/reducerWithContext/ToDoListWithContext.js -------------------------------------------------------------------------------- /frontend/src/components/effect/ChatRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/effect/ChatRoom.js -------------------------------------------------------------------------------- /frontend/src/components/effect/EffectDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/effect/EffectDemo.js -------------------------------------------------------------------------------- /frontend/src/components/formik/CustomFormMik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/formik/CustomFormMik.js -------------------------------------------------------------------------------- /frontend/src/components/formik/SignupForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/formik/SignupForm.js -------------------------------------------------------------------------------- /frontend/src/components/formik/SignupFormWithValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/formik/SignupFormWithValidation.js -------------------------------------------------------------------------------- /frontend/src/components/hook/CallBackDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/CallBackDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/CustomInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/CustomInput.js -------------------------------------------------------------------------------- /frontend/src/components/hook/DeferredDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/DeferredDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/ExternalStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/ExternalStore.js -------------------------------------------------------------------------------- /frontend/src/components/hook/FocusDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/FocusDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/IdDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/IdDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/ImperativeHandleDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/ImperativeHandleDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/InsertionEffectDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/InsertionEffectDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/LayoutEffectDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/LayoutEffectDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/MemoDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/MemoDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/RefCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/RefCounter.js -------------------------------------------------------------------------------- /frontend/src/components/hook/RefCounterProblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/RefCounterProblem.js -------------------------------------------------------------------------------- /frontend/src/components/hook/StopWatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/StopWatch.js -------------------------------------------------------------------------------- /frontend/src/components/hook/Transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/Transition.css -------------------------------------------------------------------------------- /frontend/src/components/hook/TransitionDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/TransitionDemo.js -------------------------------------------------------------------------------- /frontend/src/components/hook/fakeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/fakeName.js -------------------------------------------------------------------------------- /frontend/src/components/hook/todoStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/hook/todoStore.js -------------------------------------------------------------------------------- /frontend/src/components/interaction/EventDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/interaction/EventDemo.js -------------------------------------------------------------------------------- /frontend/src/components/interaction/ToDoListEventDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/interaction/ToDoListEventDemo.js -------------------------------------------------------------------------------- /frontend/src/components/list/HeavyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/list/HeavyList.js -------------------------------------------------------------------------------- /frontend/src/components/list/InifiniteScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/list/InifiniteScroll.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/Border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/Border.css -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/Border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/Border.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/HocDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/HocDemo.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/ToDoWithFetchUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/ToDoWithFetchUrl.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/useFetchUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/useFetchUrl.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/useHover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/useHover.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/withHover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/withHover.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/hoc/withLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/hoc/withLoader.js -------------------------------------------------------------------------------- /frontend/src/components/pattern/render-property/MouseTracker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/render-property/MouseTracker.css -------------------------------------------------------------------------------- /frontend/src/components/pattern/render-property/MouseTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/pattern/render-property/MouseTracker.js -------------------------------------------------------------------------------- /frontend/src/components/portal/MyModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/portal/MyModal.css -------------------------------------------------------------------------------- /frontend/src/components/portal/MyModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/portal/MyModal.js -------------------------------------------------------------------------------- /frontend/src/components/portal/MyModalDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/portal/MyModalDemo.js -------------------------------------------------------------------------------- /frontend/src/components/reducer/CustomReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/reducer/CustomReducer.js -------------------------------------------------------------------------------- /frontend/src/components/reducer/ReducerCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/reducer/ReducerCounter.js -------------------------------------------------------------------------------- /frontend/src/components/reducer/ToDoWithReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/reducer/ToDoWithReducer.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/Counter.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/CounterAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/CounterAlert.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/CounterTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/CounterTwo.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/InputDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/InputDemo.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/ReRenderIssue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/ReRenderIssue.js -------------------------------------------------------------------------------- /frontend/src/components/stateful/ToDoCloneIssue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/stateful/ToDoCloneIssue.js -------------------------------------------------------------------------------- /frontend/src/components/thirdparty/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/components/thirdparty/DatePicker.js -------------------------------------------------------------------------------- /frontend/src/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/contact.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/pages/ErrorPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/pages/ErrorPage.js -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/routes/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/routes/Contact.js -------------------------------------------------------------------------------- /frontend/src/routes/Destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/routes/Destroy.js -------------------------------------------------------------------------------- /frontend/src/routes/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/routes/Edit.js -------------------------------------------------------------------------------- /frontend/src/routes/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/routes/Index.js -------------------------------------------------------------------------------- /frontend/src/routes/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/routes/Root.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /helloWorld.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); -------------------------------------------------------------------------------- /py_byte_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/py_byte_code.py -------------------------------------------------------------------------------- /typescript/Abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Abstract.ts -------------------------------------------------------------------------------- /typescript/ArrowFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/ArrowFunction.ts -------------------------------------------------------------------------------- /typescript/CallOrConstruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/CallOrConstruct.ts -------------------------------------------------------------------------------- /typescript/ClassIndexSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/ClassIndexSignature.ts -------------------------------------------------------------------------------- /typescript/FirstClassClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/FirstClassClass.ts -------------------------------------------------------------------------------- /typescript/GetterSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/GetterSetter.ts -------------------------------------------------------------------------------- /typescript/Human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Human.ts -------------------------------------------------------------------------------- /typescript/Initialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Initialization.ts -------------------------------------------------------------------------------- /typescript/JSProblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/JSProblem.js -------------------------------------------------------------------------------- /typescript/OptionalInheritance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/OptionalInheritance.ts -------------------------------------------------------------------------------- /typescript/ParamProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/ParamProperty.ts -------------------------------------------------------------------------------- /typescript/PrivateField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/PrivateField.ts -------------------------------------------------------------------------------- /typescript/RuntimeThis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/RuntimeThis.ts -------------------------------------------------------------------------------- /typescript/Sonar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Sonar.ts -------------------------------------------------------------------------------- /typescript/Static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Static.ts -------------------------------------------------------------------------------- /typescript/ThisTypeGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/ThisTypeGuard.ts -------------------------------------------------------------------------------- /typescript/Visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/Visibility.ts -------------------------------------------------------------------------------- /typescript/WhyGeneric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/WhyGeneric.ts -------------------------------------------------------------------------------- /typescript/any_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/any_function.ts -------------------------------------------------------------------------------- /typescript/assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/assign.ts -------------------------------------------------------------------------------- /typescript/call_signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/call_signature.ts -------------------------------------------------------------------------------- /typescript/constraint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/constraint.js -------------------------------------------------------------------------------- /typescript/constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/constraint.ts -------------------------------------------------------------------------------- /typescript/construct_singature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/construct_singature.ts -------------------------------------------------------------------------------- /typescript/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/enum.ts -------------------------------------------------------------------------------- /typescript/function_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/function_type.ts -------------------------------------------------------------------------------- /typescript/function_type_2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/function_type_2.ts -------------------------------------------------------------------------------- /typescript/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/functions.ts -------------------------------------------------------------------------------- /typescript/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/hello.js -------------------------------------------------------------------------------- /typescript/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/hello.ts -------------------------------------------------------------------------------- /typescript/index_signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/index_signature.ts -------------------------------------------------------------------------------- /typescript/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/interfaces.ts -------------------------------------------------------------------------------- /typescript/intersect_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/intersect_type.ts -------------------------------------------------------------------------------- /typescript/intersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/intersection.ts -------------------------------------------------------------------------------- /typescript/literal_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/literal_type.ts -------------------------------------------------------------------------------- /typescript/object_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/object_type.js -------------------------------------------------------------------------------- /typescript/object_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/object_type.ts -------------------------------------------------------------------------------- /typescript/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/objects.ts -------------------------------------------------------------------------------- /typescript/optional_par.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/optional_par.ts -------------------------------------------------------------------------------- /typescript/push_down_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/push_down_type.ts -------------------------------------------------------------------------------- /typescript/readonly_Arr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/readonly_Arr.ts -------------------------------------------------------------------------------- /typescript/rest_parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/rest_parameter.ts -------------------------------------------------------------------------------- /typescript/this_in_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/this_in_function.ts -------------------------------------------------------------------------------- /typescript/tuple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/tuple.js -------------------------------------------------------------------------------- /typescript/tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/tuple.ts -------------------------------------------------------------------------------- /typescript/type_alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/type_alias.ts -------------------------------------------------------------------------------- /typescript/typegurad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/typegurad.ts -------------------------------------------------------------------------------- /typescript/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/types.ts -------------------------------------------------------------------------------- /typescript/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/union.ts -------------------------------------------------------------------------------- /typescript/why_gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrthetkhine/TuringReact5thBatch/HEAD/typescript/why_gen.ts --------------------------------------------------------------------------------