How to get the current day, month, and year in JavaScript
In this short article, we’ll show you how to get the current day, month, and year in JavaScript. Here, we will use the pure vanilla JavaScript code to get the...
In this short article, we’ll show you how to get the current day, month, and year in JavaScript. Here, we will use the pure vanilla JavaScript code to get the...
In this article, we will show you how to get the current date time of other countries in JavaScript. Here we will give you an example to get Dubai’s current...
Today, we’ll explain to you how to get the number of days between two dates using jQuery. Sometimes, we need to calculate the number of days between two dates. Using...
Today, we’ll explain to you how to get day name of a date using JavaScript. Sometimes we need to display the name of the day according to the given date....
In this short article, we will show you how to add days to a date in JavaScript. Here, we will add the number of days to the given date using...
In this article, we’ll discuss the date range search with jQuery Datepicker using Ajax, PHP and MySQL. Here, we will see how to search data from a MySQL database based...
Today, we’ll discuss how to convert a date format in PHP. For example if we have date in YYYY-MM-DD format and need to convert it to DD-MM-YYYY format. Using built-in...
In this short article, we’ll explain to you how to get yesterday’s, today’s, and tomorrow’s date using Javascript. Using the Date object, we can easily calculate the date in JavaScript....
Today we’ll explain to you how to calculate the age from date of birth in PHP. Sometimes we need to calculate the age of the user in web applications. So...
Today we’ll show you how to convert a 12 hour format to 24 hour format using JavaScript. Here we will show you the conversion using custom function and Moment.js function....
Today we’ll show you how to implement time picker in React. We have written an article where we showed you how to add DateTimePicker in ReactJS. In this article we...
In this short article, we will show you how to calculate age in years using JavaScript. We’ll learn how to calculate the user’s age from their date of birth and...
In this article, we’ll show you how to sort an array by date in JavaScript. When you are working with an array of objects that contains a date field and...
Today we’ll show you how to implement date range picker in React. Sometimes you need to implement DateRangePicker in booking sites, reporting sites and at many more places. So here...