Monday, January 20, 2020
Sunday, January 19, 2020
Monday, January 13, 2020
Moment js examples
moment().format('MMMM Do YYYY, h:mm:ss a') | January 13th 2020, 3:19:07 pm |
moment().format('dddd') | Monday |
moment().format('MMM Do YY') | Jan 13th 20 |
moment().format('YYYY [escaped] YYYY') | 2020 escaped 2020 |
moment().format() | 2020-01-13T15:19:07+06:00 |
moment(new Date()).format('MMMM Do YYYY, h:mm:ss a') | January 13th 2020, 3:19:07 pm |
moment(new Date(2012,12,3)) < moment(new Date(2012,12,1)) | false |
moment(new Date(2012,12,3)) < moment(new Date(2012,12,4)) | true |
moment('2014-02-17T08:30:00').format('MMMM Do YYYY, h:mm:ss a') | February 17th 2014, 8:30:00 am |
Moment | Result |
moment('20111031', 'YYYYMMDD').fromNow() | 8 years ago |
moment('20120620', 'YYYYMMDD').fromNow() | 8 years ago |
moment().startOf('day').fromNow() | 15 hours ago |
moment().endOf('day').fromNow() | in 9 hours |
moment().startOf('hour').fromNow() | 19 minutes ago |
https://codepen.io/bassfiddle/pen/lrLwy?__cf_chl_jschl_tk__=0943c67cf5ff73480726a5ac8e5763ebb56522ae-1578907142-0-AbBkBcHLw26HIyPKro4vU7EsZF5vhL3G8LVFxWAC2jT37WBmIFhcNIEgck9E8cAdeMLH1NQ47enPSkDkt450LHjXG1pPpY18RU1VY7yM-bKr97mqZCW8ZZ53Okv6V-yQ7MB_do_Y74h6f7VNCcPTTcKFkXrRZVAgDARL0BeYdl4oeS0pTZxGNiwwWTpNrcmFys5TKpyZzqse4t6LfZfW2Tgbn1KohgagcD687HA9pU2P89A42M3wongqOLd-UDwoHcZ-XVxuTPIeVwCtYNGdG2ZAR4Lhv0wbdw5K0T3I0cB2bUShXNoS-h-xevErZnZNO0dvH7Z8bcJIRykjtU2dsFy5I7mgeWj4i6ngs-CU6P4l
Wednesday, January 8, 2020
Subscribe to:
Posts (Atom)
-
Composer is a major part of the Laravel MVC Framework, but it also exists without Laravel. In fact you could use it in any project. This a...
-
How to Answer Technical Questions Like a Pro Answering technical interview questions is all about showing off your problem-solving skills an...
-
Vuetify is a popular UI framework for Vue apps. In this article, we’ll look at how to work with the Vuetify framework. Color Picker Inputs W...