Yokesh Varadhan
Yokesh Varadhan

Reputation: 1636

Get device date and time

I am able to get date picker from ionc2 doc

Could someone show me how to get device date and time in ionic2

Upvotes: 2

Views: 1567

Answers (1)

Sampath
Sampath

Reputation: 65988

If you use momentjs then you can easily handle date time use cases.

let currentDateTime = moment().format("MM-DD-YYYY HH:mm:ss")

Install:

npm install moment --save

usage:

import moment from 'moment';

Moment with Typescript Doc

Upvotes: 2

Related Questions