WANTS TO MAKE SOFTWARE WITHOUT KNOWLEDGE OF ASP? CLICK HERE
The Second function returns a number between 0 and 59 that represents
the second of the minute. The Second function describes any expression
that can represent a time. If time contains Null, Null is returned.
The time argument is any expression that can represent a time.
The Syntax of the Second Function is :-
Its Description is :-
Parameter |
Description |
time |
Required. Any expression that can represent a
time |
Example#1 :-
Code :-
document.write(Now & "<br />")
document.write(Second(Now))
Output :-
1/15/2002 10:55:51 AM
51 |
Example#2 :-
Code :-
document.write(Second(Time))
Output :-
51 |
Example#3 :-
Code :-
<%
=Second(Time)
%>
Output :-
56 |
|