Every line of 'get utc time javascript' 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.
51 displayUTC(time) { 52 return Timestamp._display(this._template, Timestamp.utc(time)); 53 }
200 public 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 }
53 function utc() { 54 return new Date().getTime(); 55 }