by Nidhika Sareen | Mar 20, 2023 | Tech Corner
Design Thinking and Agile methodologies are both approaches to problem-solving that have gained popularity in recent years. While they come from different backgrounds and have different origins, they share many similarities and can be used together to create a more...
by Navin Prasad | Feb 6, 2023 | Tech Corner
What is Angular Service? In simple terms, Angular Service is an object which we can use on multiple places to share a common need, for example, lets we have ten different angular components and we need a logging feature on all/most of them. The common approach would...
by Vivek Alhat | Nov 21, 2022 | Tech Corner
What are hooks? According to the React documentation, hooks provides us a way to use state and other features of React without writing a class component. Hooks let you use the class component’s lifecycle features inside a function component. Initially, when I...