Posts for Md Niaz Rahman Khan

Niaz is a professional full-stack developer as well as a thinker, problem-solver, and writer. He loves to share his experience with his writings.

How to format dates in ReactJS

In this article, you are going to learn about how to format dates in ReactJS. ReactJS is a JavaScript library that is used in the front-end to better the UI experience. With react you can do many interesting things. The most interesting part is that you can write JavaScript code here easily. You already know […]

January 30, 2022 in Code examples & React

How to Model your data in MongoDB

MongoDB is a database that is also known as a NoSQL database. In another word, MongoDB is a schema-based database that is used to store data in documents. It is highly scalable and powerful. It stores data by following a field-value data structure that is most likely JSON but in MongoDB, it is known as […]

January 28, 2022 in Node & Tutorials

How to use tuple in Golang

In this article, you are going to learn about how to use tuples in the Go language. In general, a sequence of finite ordered elements is considered as a tuple and in programming languages, a tuple means pair or an ordered set of values. Depending on the rules of particular programming languages, the values of […]

January 25, 2022 in Code examples & GoLang

What is the difference between block and Inline-block elements?

In this article, you will learn about what is the difference between block and inline-block elements. Block and inline-block elements are two categories of HTML(Hypertext Markup Language). These elements have different use-cases and also have different nature. In this article, we will demonstrate what block and inline-block elements are and the basic differences between them. […]

January 24, 2022 in Code examples

How to use CORS in ExpressJS

In this article, you are going to learn about how to use CORS in ExpressJS. ExpressJS is an open-source backend web application framework for NodeJS. It is very popular and provides a rich set of features for web development. CORS stands for cross-origin resource sharing. It is a package of NodeJS that provides browser security […]

January 21, 2022 in Code examples & Node

What is req.body in ExpressJS

In this article, you will learn about what is req.body in ExpressJS and, how to use it. ExpressJS is a very popular and open-source backend web application framework for NodeJS. In express, you will get req.body property. Basically, it is an object that will allow you to access data from the client-side in the form […]

January 21, 2022 in Code examples & Node