Now: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Add javascript snippet)
No edit summary
Line 4: Line 4:


Now returns the current date and time according to the date and time setting of your computer.
Now returns the current date and time according to the date and time setting of your computer.
== Example ==
<tabber>
JavaScript=
<syntaxhighlight lang="JavaScript">
// Now example
NSB.Print(new Date());
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
' Basic
Print FormatDateTime(Now)
</syntaxhighlight>
</tabber>


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

Revision as of 17:42, 22 July 2019

Now

Description

Now returns the current date and time according to the date and time setting of your computer.

Example

// Now example
NSB.Print(new Date());

' Basic
Print FormatDateTime(Now)

Example (Basic)

Rem Now example
Print FormatDateTime(Now)

Example (JavaScript)

// Now example
NSB.Print(new Date());

Output

11/11/2004 9:52:27 AM

Related Items

Date, Day, Hour, Minute, Month, Second, Time, WeekDay, Year