DateValue: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
DateValue(''date'')
DateValue(''date'')


Line 9: Line 11:
Date separators are characters that separate day, month, and year when a date is formatted as a string, they are determined by your system settings.
Date separators are characters that separate day, month, and year when a date is formatted as a string, they are determined by your system settings.


== Example ==
== Example (Basic) ==


<pre>
<pre>
REM DateValue Example
Rem DateValue Example
'DateValue returns a date
'DateValue returns a date
DIM IndepDay, Birthday
Dim IndepDay, Birthday
IndepDay = DateValue("July 4, 1776")
IndepDay = DateValue("July 4, 1776")
Birthday = DateValue("Dec 27 1970")
Birthday = DateValue("Dec 27 1970")
PRINT "Independence Day:", IndepDay
Print "Independence Day:", IndepDay
PRINT "My birthday:", Birthday
Print "My birthday:", Birthday
</pre>
</pre>


Line 31: Line 33:
== Related Items ==
== Related Items ==


[[format|FORMAT]], [[timevalue|TIMEVALUE]]
[[Formatting_Functions|Format]], [[timevalue|TimeValue]]


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Date and Time]]
[[Category:BASIC Functions]]

Latest revision as of 15:22, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

DateValue(date)

Description

DateValue returns a date. The required parameter, date, is usually a string, but any expression that can represent a date, a time, or a date and time ranging from January 1, 100 to December 31, 9999, can be used.

If date is a string that consists of numbers separated by date separators, it recognizes the order for month, day, and year according to the Short Date format specified for your system. If the year is left out of date, the current year is used. Unambiguous month names as strings will be recognized in either long or abbreviated form.

Date separators are characters that separate day, month, and year when a date is formatted as a string, they are determined by your system settings.

Example (Basic)

Rem DateValue Example
'DateValue returns a date
Dim IndepDay, Birthday
IndepDay = DateValue("July 4, 1776")
Birthday = DateValue("Dec 27 1970")
Print "Independence Day:", IndepDay
Print "My birthday:", Birthday

Output

Independence Day:    7/4/1776
My birthday:  12/27/1970
(''sample date output is machine dependant'')

Related Items

Format, TimeValue