Most viewed questions in Angular

0 votes
1 answer

How can we achieve transclusion in AngularJs?

Hii,  In order to know what transclusion is ...READ MORE

Feb 5, 2020 in Angular by Niroj
• 82,800 points
972 views
0 votes
1 answer

What is Angular framework?

Angular is an open-source web application framework ...READ MORE

Jan 12, 2024 in Angular by Vaishali
953 views
0 votes
1 answer

What is the difference between Call back transclusion function and no call back transclusion function?

Hey,    There is no difference between clone linking and ...READ MORE

Feb 5, 2020 in Angular by Niroj
• 82,800 points
935 views
0 votes
1 answer

How do I force clear cache in Angular?

To force clear the cache in Angular, ...READ MORE

Dec 31, 2024 in Angular by Navya
913 views
0 votes
1 answer

What is the service that is used to configure the UI-Router and ngRoute in AngularJs?

Routing comes into play whenever you want ...READ MORE

Feb 11, 2020 in Angular by anonymous
• 82,800 points
876 views
0 votes
1 answer

What is angular cli?

Angular CLI  is a command-line tool for ...READ MORE

Dec 15, 2023 in Angular by Sonu
873 views
0 votes
1 answer

Implementation of clone linking function and no callback function

Implementation of no callback function:   app.directive( "message", function(){ ...READ MORE

Feb 5, 2020 in Angular by Niroj
• 82,800 points
856 views
0 votes
1 answer

Where does the data resides after having resolve operation in routing?

Hii, In a workflow of routing with resolve ...READ MORE

Feb 10, 2020 in Angular by Niroj
• 82,800 points
814 views
0 votes
1 answer

What is Angular Material?

Angular Material is a UI component library ...READ MORE

Dec 29, 2023 in Angular by Irene
731 views
0 votes
1 answer

What is single-page application in angular?

In Angular, a single-page application is a ...READ MORE

Feb 19, 2024 in Angular by Digna
716 views
0 votes
0 answers

What is the difference between Promises and Observables?

May 23, 2022 in Angular by Kichu
• 19,040 points
716 views
0 votes
1 answer

How to handle cache busting in Angular?

In Angular, cache busting ensures users get ...READ MORE

Dec 23, 2024 in Angular by Navya
515 views
0 votes
1 answer

How to transfer data between two unrelated components in Angular?

Steps to Transfer Data Between Unrelated Components 1. ...READ MORE

Dec 12, 2024 in Angular by Navya
447 views
0 votes
1 answer

How to set a default base URL for all API calls in Angular?

In Angular, you can set a default ...READ MORE

Feb 26 in Angular by Kavya
431 views
0 votes
1 answer

How to cancel HTTP request in Angular 8?

In Angular 8, you can cancel an ...READ MORE

Feb 26 in Angular by Kavya
408 views
0 votes
1 answer

How to send multipart/form-data for a file upload in Angular?

In Angular, you can send files using ...READ MORE

Feb 24 in Angular by Navya
391 views
0 votes
1 answer

How do I navigate to previous page in React using useNavigate?

In React, you can navigate to the ...READ MORE

Mar 7 in Angular by Tanvi
384 views
0 votes
1 answer

How to change the value of an Observable in TypeScript Angular?

To change the value of an Observable ...READ MORE

Feb 21 in Angular by Kavya
357 views
0 votes
1 answer

How do I initialize a new Angular project with the latest configuration for optimal setup?

Install Angular CLI Open the VS code terminal ...READ MORE

Dec 12, 2024 in Angular by Navya
353 views
0 votes
1 answer

How do I inject a service into multiple components in Angular without re-initializing it?

To inject a service into multiple components ...READ MORE

Dec 12, 2024 in Angular by Navya
351 views
0 votes
1 answer

How can I create a custom pipe in Angular to format dates based on user locale?

To create a custom pipe in Angular ...READ MORE

Dec 12, 2024 in Angular by Navya
335 views
0 votes
1 answer

How to pass data from a child component to a parent component in Angular 4?

In Angular 4, passing data from a ...READ MORE

Dec 4, 2024 in Angular by Navya
335 views
0 votes
1 answer

Cannot find name webgl object TypeScript issue TS2304.

The error Cannot find name 'WebGLObject'. TS2304 ...READ MORE

Mar 6 in Angular by Anvi
330 views
0 votes
1 answer

How to preload a component in Angular?

In Angular, components are not preloaded directly, ...READ MORE

Feb 24 in Angular by Navya
322 views
0 votes
1 answer

How to run TypeScript files from the command line?

TypeScript needs to be compiled into JavaScript ...READ MORE

Nov 27, 2024 in Angular by Navya
320 views
0 votes
1 answer

How to make a sequence of http requests in Angular 6 using RxJS

You can utilize the concatMap operator. This ...READ MORE

Feb 12 in Angular by Kavya
317 views
0 votes
1 answer

How to create a pipe that converts timestamps to relative time strings (e.g., '2 hours ago')?

You can use the date-fns library for ...READ MORE

Apr 10 in Angular by anonymous
315 views
0 votes
1 answer

How to get last visited page URL in React?

To get the last visited page URL ...READ MORE

Mar 6 in Angular by Anvi
310 views
0 votes
1 answer

What is the use case of custom directives in Angular?

Custom directives are used to encapsulate reusable ...READ MORE

Feb 26 in Angular by Tanya
292 views
0 votes
1 answer

How can I configure lazy loading for Angular modules?

To configure lazy loading in Angular, you ...READ MORE

Dec 12, 2024 in Angular by Navya
292 views
0 votes
0 answers

When to use switchMap vs concatMap?

With the help of an example, can ...READ MORE

Mar 3 in Angular by Nidhi
• 16,260 points
286 views
0 votes
1 answer

How to implement a pipe that capitalizes the first letter of each word in a string?

To create a pipe in Angular that ...READ MORE

Apr 10 in Angular by anonymous
285 views
0 votes
1 answer

Should I use map or switchmap when using angular http module?

When working with the Angular HTTP module, ...READ MORE

Feb 24 in Angular by Navya
275 views
0 votes
1 answer

How to create a mat table in Angular?

1. Install Angular Material ng add @angular/material 2. Import ...READ MORE

Mar 6 in Angular by Anvi
274 views
0 votes
1 answer

How can you log and inspect request and response headers in Angular?

In Angular, you can log request and ...READ MORE

Feb 25 in Angular by Navya
268 views
0 votes
1 answer

How can we add the style conditionally in Angular?

In Angular, you can add styles conditionally ...READ MORE

Feb 26 in Angular by Tanya
266 views
0 votes
1 answer

How do you handle uncaught exceptions and promise rejections in Express.js?

Handling uncaught exceptions and unhandled promise rejections ...READ MORE

Dec 6, 2024 in Angular by Navya
266 views
0 votes
1 answer

What are the steps to pass a single TypeScript Interface object as props to a child component in React?

To pass a single TypeScript interface object ...READ MORE

Feb 21 in Angular by Kavya
265 views
0 votes
1 answer

How can I dynamically validate Angular forms based on user input?

Dynamic Form Controls with Validation: In scenarios where ...READ MORE

Feb 12 in Angular by Navya
265 views
0 votes
0 answers

What are the differences between mergeMap, concatMap, and switchMap?

can someone explain me What are the ...READ MORE

Mar 5 in Angular by Nidhi
• 16,260 points
263 views
0 votes
1 answer

How to Use react-blurhash Without Knowing Exact Width and Height of the Placeholder?

To use react-blurhash without knowing the exact ...READ MORE

Mar 10 in Angular by Tanvi
257 views
0 votes
0 answers

How do Observables improve API call handling in Angular?

With the help of an example, can ...READ MORE

Mar 3 in Angular by Nidhi
• 16,260 points
257 views
0 votes
0 answers

What is the difference between debounceTime and debounce?

Can you tell me what the difference ...READ MORE

Mar 5 in Angular by Nidhi
• 16,260 points
253 views
0 votes
0 answers

How do you apply transform functions in PipeTransform Interface?

i want know with the help of ...READ MORE

Mar 5 in Angular by Nidhi
• 16,260 points
250 views
0 votes
0 answers

How can we combine multiple built-in pipes in Angular templates?

Can you help me with a code ...READ MORE

Mar 3 in Angular by Nidhi
• 16,260 points
246 views
0 votes
0 answers

How do I call an Angular 2 pipe with multiple arguments?

Can you explain with an example that ...READ MORE

Mar 3 in Angular by Nidhi
• 16,260 points
245 views
0 votes
1 answer

How does Angular's HttpInterceptor modify outgoing requests?

An HttpInterceptor in Angular is used to ...READ MORE

Feb 24 in Angular by Navya
245 views
0 votes
1 answer

How to remove components created with Angular-CLI?

To remove components created with Angular CLI, ...READ MORE

Feb 26 in Angular by Navya
243 views
0 votes
1 answer

How to develop a pipe that formats phone numbers based on locale?

You can use the libphonenumber-js library for ...READ MORE

Apr 10 in Angular by anonymous
240 views
0 votes
0 answers

How do you deal with errors in Observables?

With the help of an example, can ...READ MORE

Mar 3 in Angular by Nidhi
• 16,260 points
240 views