IT Process Automation

CA PAM::.Javascript::. getSeconds() Method 

Mar 24, 2017 09:28 AM

getSeconds()

 

Overview - definition

 

Returns the second (from 0-59)

 

Usage

The getSeconds() method returns the seconds (from 0 to 59) of the specified date and time.

 

 

Results

A Number, from 0 to 59, with a real second

Examples

 

var vDate = new Date();
var vSeconds = vDate.getSeconds();

 

var vdate = new Date("March 24, 2017 10:14:13");
var vhour = vdate.getMinutes();

//the results of vhour will be 14

 

function LeftZero(vtemp) {
    if (vtemp < 10) {
        vtemp = "0" + vtemp;
    }
    return vtemp;
}

function myHour() {

    var vdate = new Date();

    var vhour = LeftZero(vdate.getHours());
    var vminute = LeftZero(vdate.getMinutes());
    var vsecond = LeftZero(vdate.getSeconds());

    var result = vhour + ":" + vminute + ":" + vsecond;
}

 

 

know_more.png

Summary CA Process Automation 

Summary CA Service Management Community 

Service Desk Manager 15 days Implementation 

CABI:: Summary - BOXI for CA SDM 

Summary CA SDM Scoreboard 

 

 

Was useful, please leave your feedback!

Statistics
0 Favorited
0 Views
0 Files
0 Shares
0 Downloads

Related Entries and Links

No Related Resource entered.