Here is a simple function that takes the input of JS Date and returns a string of format YYYY-MM-DD: var getDateFromDateTime = function(date) { date = new Date(date); //Using this we can convert any date format to JS Date var mm = date.getMonth() + 1; // getMonth() is zero-based var dd = date.getDate(); if(mm
Category: Web
Here is a simple function that takes the input of JS Date and returns a string of format YYYYMMDD: var getDateFromDateTime = function(date) { date = new Date(date); //Using this we can convert any date format to JS Date var mm = date.getMonth() + 1; // getMonth() is zero-based var dd = date.getDate(); if(mm
Lets say you want to display a list of numbers from 1 to n but want them to be displayed as 01 02 03 04 05… and not 1 2 3 4 5… Angular by default doesn’t have a filter for this. Here is how you implement it: Implement the filter in a module. Here […]
I recently got the following error while uploading media to my wordpress site: Unable to create directory uploads/2016/06. Is its parent directory writable by the server? Here are the steps to fix the issue: Possible Issue 1: Incorrect Directory pointed to in the settings: Open your WordPress Admin page (this is usually at /wp-admin) Hover […]
Angular’s built in number filter allows one to specify the number of decimals that should be displayed. The syntax is as follows: {{val | number:<count>}} Where val is the value to be displayed, number is the filtername and count is the number of decimals to be displayed. For eg.: If val is 1234.56789 {{val | […]