Search Results

Blog Archive

Debugging Angular App

1. Check error message and try to understand error message. For example here we have error message related TS where we have to add string...
Continue reading

WP Tutorials

When I started learning I found this man’s course on WordPress and I been very grateful for that course and this man. By the way...
Continue reading

Angular: Services

Services are a key part of building a scalable and maintainable Angular application. Services are used to organize and share code across your application. They...
Continue reading

Angular: ngContent

If you want build a card design and use that card design as wrapper in multiple places you can use it with ngContent method. Example:...
Continue reading

Angular: @Input() vs input()

@Input() Decorator The @Input decorator allows parent components to pass data to their children. Example of @Input In this example child component binds userName with...
Continue reading