Posts

Showing posts from January, 2024

Commands

1.npm i - install all packeges  2.ng new <ProjectName> 3.ng g c <ComponentName> 4.ng g s <ServiceName> 5.ng g interface <InterfaceName> 6.ng g p <PipeName> 7.ng g class <ClassName> 8.ng g d <DirectiveName> 8.ng s - <RunAngular> 9.ng s -o <RunAngular & open> 10.ng s --port 5200 11.ng g c <component-name> --dry-run  It is used to check the where creating component and changes it will make like module 12.nvm list node -v npm -v ng v

BestWebsitesToLearn

 1. angular.io 2. tektutorialshub 3. dotnettutorials 4. javatpoint       javatpointang7 5. tutorialtechaltum 6. w3schoolsblog 7. tutorialspoint 8. tutorialsteacher 9. simplilearn  -- interview 10. techiediaries 11. edureka 12. scaler  * 13. toptalang5 14. javaguidesang8 * 15. dotnettricks ** 16. github 17. angular-templates.io -12** 18. vitainbeta **

TypeScript ArrayFuncitons

1.Arrays 1)some()-Return Boolean checks condition on array,any one element satisfies return True                                         (opposite) every()-Return Boolean checks condition on array,every element satisfies return True 2)push()-Adds one or more elements to the end of an array and returns the new length of the array.                                         (opposite) unshift()-Adds one or more elements to the front of an array and returns the new length of the array. 3)pop()-Removes the last element from an array and returns that element. (opposite) shift()-Removes the first element from an array and returns that element. splice(index,1)-Removes an elements from array of particular index 4)filter()-Return new array based on filter condition 5)map()-Return a array ,It is l...

AngularTopics

 1.Events 2.Propertys 3.ClassBinding 4.StringInterpolation 5.Routings 6.Parent-Child_Communication(view) 7.Directives 8.Pipes 9.DependencyInjection 10.Forms 11.Http/HttpClient 12.Observables,Promises 13.Rxjs 14.Hooks Lifecycle 15.Gaurds 16.Interceptors 17.LazyLoading 18.DataTypes 19.Variable Declaration 1.Components 2.Services 3.Class 4.Interfaces 5.app.modules.ts 6.index.html 7.Templates