Blog

All the latest posts
Article Tarif Hossain views 19019 times
SyntaxError: Unexpected end of input when using mode: 'no-cors'
Article Tarif Hossain views 7488 times
Reactjs - Uncaught TypeError: Cannot read property state or props of undefined
Article Sharif Ahmed views 2704 times
Rendering a React Component is easy. But sometimes such a situation comes up that, you only need to add attributes to a React Component if a certain condition is met.
Article Mohaimen Khalid views 637 times
Interceptors provide a mechanism to intercept and/or mutate outgoing requests or incoming responses. They are very similar to the concept of middle-ware with a framework like Express, except for the front-end.
Article Sharif Ahmed views 5070 times
While using React Js, you may need a pre-selected option in your dropdown selection field. For this, you may want to send a selection field value from parent component to child component as props.
Article Tarif Hossain views 100373 times
With React 16.8.6 (it was good on previous version 16.8.3), I get this error when I attempt to prevent an infinite loop on a fetch request
Article Mohaimen Khalid views 14547 times
The instances of the new HttpHeader class are immutable objects. Invoking class methods will return a new instance as result.
Article Mohaimen Khalid views 34320 times
I am trying to call an API from Angular but am getting this error: Property 'map' does not exist on type 'Observable'. I found solutions but this solutions didn't solve my issue.
Article Sharif Ahmed views 10283 times
super expression must either be null or a function, not undefined
Article Mohaimen Khalid views 7670 times
interface is a virtual structure that only exists within the context of TypeScript. The TypeScript compiler uses interfaces solely for type-checking purposes. Once your code is transpiled to its target language
Article Ab Siddik views 182091 times
Uncaught Error: Too many re-renders. React limits the number of renders to prevent an infinite loop. In this article, we will describe why this error occurs and how to fix it.
Article Ab Siddik views 20228 times
Uncaught Error: Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function but got: object. In this article, we will explain why this error occurs and how to fix it.
Article Mohaimen Khalid views 10361 times
Angular exposes a stripped down version of Observable in the rxjs/Observable module, a version that lacks almost all operators including the ones we'd like to use here such as the map method.
Article Mohaimen Khalid views 11713 times
I am learning angular 2 and for the first time I am using the angular CLI project to create a sandbox project.
Article Mohaimen Khalid views 7202 times
The Angular @ViewChild decorator is one of the first decorators that you will run into while learning Angular, as it's also one of the most commonly used decorators.