second – POFTUT

Javascript Date Types and Functions

Date is used to store date related types. There are a lot of date functions to operate with date variables. Date holds year,month,day,hour,minute,second and millisecond. var d=new Date(); We have created new d variable with date type. 2016-10-27T03:41:55.155Z This is the value holded d  Get Day of Week The day number of the week can be … Read more

Python Date Time Functions With Examples

Date time is important part of the application development. Date is used in different format to show, save, or compare events and process. Date and time have different presentation formats which may be change according to countries and localization settings. In this tutorial we will look different usage examples of datetime operations. Import Datetime Library … Read more