cant bind to property angular

Can’t bind to ‘product’ since it isn’t a known property of ‘app-product’

While running your Angular project you might see the following error like “Can’t bind to ‘product’ since it isn’t a known property of ‘app-product‘”. If you get template parse errors as shown below Error: Template parse errors: Can’t bind to… Read More!

ERROR TypeError: Cannot read property ‘sort’ of undefined

When you get ERROR TypeError: Cannot read property ‘sort’ of undefined while running angular app, the main cause of this error would be array initialization in the ‘app.component.ts” file. Solution: Open ‘app.component.ts’ file in your favorite editor and check whether the… Read More!