Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

dateTime to date in js

let dateStr =new Date("Wed Aug 05 18:11:48 UTC 2020")

dateStr.toLocaleDateString()
// "05/08/2020"

dateStr.toTimeString()
// "23:41:48 GMT+0530 (India Standard Time)"
Comment

convert date time to date function javascript

var date = new Date();
var readable_date = date.toDateString();
console.log(readable_date);

// Tue Jun 09 2020
Comment

datetime to date javascript

var currentDate = new Date();

var date = currentDate.getDate();
var month = currentDate.getMonth(); //Be careful! January is 0 not 1
var year = currentDate.getFullYear();

var dateString = date + "-" +(month + 1) + "-" + year;
Comment

PREVIOUS NEXT
Code Example
Javascript :: moment js difference between two dates 
Javascript :: last element in array 
Javascript :: js for each item in array 
Javascript :: npm stylelint 
Javascript :: how to print object in JavaScript, Object print in JavaScript 
Javascript :: foreach javascript 
Javascript :: moment js from now 
Javascript :: Javascript Regex for non-negative numbers 
Javascript :: create array javascript 
Javascript :: javascript object remove empty properties 
Javascript :: chrome.tab.onupdated 
Javascript :: jquery on focus 
Javascript :: how to print numbers from 1 to 100 in javascript 
Javascript :: useeffect skip first render 
Javascript :: addeventlistener js select item 
Javascript :: javascript toutcstring 
Javascript :: json typicode 
Javascript :: check if element is visible or hidden in dom 
Javascript :: how to read 2 dimensional array in javascript 
Javascript :: rounding up a number so that it is divisible by 5 javascript 
Javascript :: js print all prime numbers 
Javascript :: i18n react get current language 
Javascript :: for open new tab we are using window.open but new tab are open in left side how to change the right side 
Javascript :: iso to date javascript 
Javascript :: how to remove an object from jsonobject in java 
Javascript :: redirect react router 
Javascript :: how to print a line in javascript 
Javascript :: jqiery check if scroll to end 
Javascript :: convert array to number js 
Javascript :: discord.js clean content 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =