9 examples of 'javascript date without time' in JavaScript

Every line of 'javascript date without time' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
200public toJavaScriptDate(implicitTimezone = undefined): Date {
201 const timezoneToUse =
202 this._timezone || implicitTimezone || DayTimeDuration.fromTimezoneString('Z');
203 return new Date(
204 Date.UTC(
205 this._years,
206 this._months - 1,
207 this._days,
208 this._hours - timezoneToUse.getHours(),
209 this._minutes - timezoneToUse.getMinutes(),
210 this._seconds + this.secondFraction
211 )
212 );
213}
182function Date_Time(julian_date) {
183 return new Date((julian_date - 2440587.5) * 86400000.);
184}
2static timeStringToDate(time_string) {
3 if (!time_string) {
4 return new Date('1970-01-01T00:00:00.000Z');
5 }
6
7 if (!/Z$/.test(time_string)) {
8 //does not end in Z
9 // https://github.com/cryptonomex/graphene/issues/368
10 time_string = time_string + 'Z';
11 }
12
13 return new Date(time_string);
14}
416datetotime(datetime: number): string {
417 const date = new Date(datetime * 1000);
418 const seconds = this._getDateTimeInMs(date) / 1000;
419 const longtime = this.integertolongtime(seconds);
420 return longtime.substring(0, longtime.length - 3);
421}
20function time(date: Date, timeZone: string) {
21 return Intl.DateTimeFormat(DEVICE_LOCALE, {
22 timeZone,
23 hour: 'numeric',
24 minute: 'numeric',
25 }).format(date);
26}
55public getDateString(): string {
56 return "" + this.day + "." + this.month + "." + this.year + ".";
57}
46function formatDateTime(dateTime) {
47 if (!dateTime) {
48 return "-";
49 }
50
51 dateTime = new Date(dateTime);
52
53 return pad(dateTime.getUTCDate(), 2) + "."
54 + pad(dateTime.getUTCMonth() + 1, 2) + "."
55 + dateTime.getUTCFullYear() + " "
56 + pad(dateTime.getUTCHours(), 2) + ":"
57 + pad(dateTime.getUTCMinutes(), 2);
58}
5function standardDate(d){
6 var date = new Date(d);
7 date.setHours(0,0,0,0);
8 return date;
9}
37function displayDateTime(time) {
38 if (time)
39 return time.replace('T', ' ').replace('.000Z', '');
40 else
41 return time;
42}

Related snippets