AngularJs Factory and Services. References: https://blog.thoughtram.io/angular/2015/07/07/service-vs-factory-once-and-for-all.html The difference between services and factories we can define a service like this: app . service ( 'MyService' , function () { this . sayHello = function () { console . log ( 'hello' ); }; }); .service() is a method on our module that takes a name and a function that defines the service. app . factory ( 'MyService' , function () { return { sayHello : function () { console . log ( 'hello' ); } } }); .factory() is a method on our module and it also takes a name and a function, that defines the factory. a service is a constructor function where as a factory is Not .T here’s ' this ' code that calls Object.create() with the service constructor function, when it gets instantiated. However, a factory function is really just a function that gets called, ...
https://micro-frontends.org/ It extends the concepts of microservices to the frontend world. https://www.atlassian.com/agile/project-management Agile project management is an iterative approach to managing software development projects that focuses on continuous releases and incorporating customer feedback with every iteration. It’s flexible, fast, and aims for continuous improvements in quality, using tools like Scrum and eXtreme Programming . https://stackify.com/agile-methodology/ Agile Methodology is a people-focused, results-focused approach to software development that respects our rapidly changing world. It’s centered around adaptive planning, self-organization, and short delivery times. It’s flexible, fast, and aims for continuous improvements in quality, using tools like Scrum and eXtreme Programming . https://www.atlassian.com/agile Agile is an iterative approach to project management and software development that helps team...
https://www.youtube.com/watch?v=ZOktx_c0vRY https://www.youtube.com/watch?v=gg0Vwfg_MBc Micro Front end= https://dzone.com/articles/micro-frontends-by-example-8 https://career.guru99.com/how-to-answer-50-most-common-interview-questions/ Q.1 What are your strength? Creativi ty Honesty Dedication Self-motivation Continuous Learning Self-control Adaptive Analytical skills Positive thinking I believe that my greatest strength is the ability to solve problems quickly and efficiently. I am very comfortable working with different groups of people. My strength is my analytical and planning skills, Q.1 What are your weakness? As far as my weakness is concerned, I get impatient sometimes in order to get everything done very quickly. To tackle the problem, I am trying to re-consider the to-do list and prioritize the tasks. some time i takes things personally and help the people and they got benefit from me.
Comments
Post a Comment