![]() |
In TypeScript, conversion from string to date can be done using the Date object and its method. We can use various inbuilt methods of Date object like new Date() constructor, Date.parse(), and Date.UTC. Table of Content Using new Date()In this approach, we are using the new Date() constructor in TypeScript to convert a string representation into a Date object. The output Date object represents the date and time parsed from the input string, and it is then printed to the console. Syntax:let currentDate: Date = new Date(); Example: The below example uses new Date() to convert string to date in TypeScript.
Output: 2024-02-27T00:00:00.000Z object Using Date.parse()In this approach, we are using Date.parse() to convert the string representation of a date into the corresponding timestamp. Then, a new Date object is created using the got timestamp, representing the parsed date and time, and it is printed to the console. Syntax:let timestamp: number = Example: The below example uses Date.parse() to convert string to date in TypeScript.
Output: 2024-02-26T18:30:00.000Z Using Date.UTC()In this approach, we are using Date.UTC() to create a UTC timestamp based on the individual components parsed from the input string. The temp array holds the parsed year, month, and day, and a new Date object (res) is then constructed using Date.UTC(). The output Date object displayes the parsed date in Coordinated Universal Time (UTC). Syntax:let timestamp: number = Example: The below example uses Date.UTC() to convert string to date in TypeScript.
Output: 2024-02-27T00:00:00.000Z Approach 4: Using the moment.js libraryThe moment.js library provides powerful utilities for parsing, validating, manipulating, and formatting dates and times in JavaScript. You can use moment.js to easily convert a string representation of a date to a Date object in TypeScript. Example: In the following example, we’ll use moment.js to convert a string to a Date object in TypeScript.
Output 2024-02-27T00:00:00.000Z Approach 5: Using Date-fns LibraryThe Date-fns library is a modern JavaScript date utility library that provides comprehensive date and time manipulation capabilities. It offers a clean and simple API, making it an excellent choice for working with dates in TypeScript. Example: The following example demonstrates how to use the Date-fns library to convert a string to a Date object in TypeScript.
Output: 2024-02-27T00:00:00.000Z |
Reffered: https://www.geeksforgeeks.org
JavaScript |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 11 |