Error: Request header field Content-Type is not allowed by Access-Control-Allow-Headers

2 years ago

At times, you get errors like this when you are trying to connect your localhost application to a remote server.…

Store Multiple Items in AsyncStorage in React Native

2 years ago

AsyncStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app. It should be used instead of…

React Native Select Dropdown For Android and iOS

2 years ago

The select dropdown feature is useful for presenting users with a list of predefined options which they can select from.…

Export Data to Excel in React JS

2 years ago

To export data to Excel in React JS, let's first consider some of the scenarios where exporting data to Excel…

Sort an Array in Descending Order in JavaScript

2 years ago

Sometimes you might want to display data in an ascending order in your Javascript application. Javascript does not have an…

How to Use Google Places AutoComplete in React Native

2 years ago

The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available on…

Configuration with name ‘compile’ not found React Native

2 years ago

Sometimes you get this error when you are trying to run your React Native project. To solve it, navigate to…

Add Multiple Items to AsyncStorage in React Native

2 years ago

Sometimes in your React Native project, you just want to store multiple items in AsyncStorage without doing so repetitively. Here…

How to Create Your First Node JS Application

2 years ago

Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It’s used in production by large…

How to Check if a Date is Between Two Dates in JavaScript

2 years ago

When creating your software application or web application, you can check if a date is between two dates by using…