Difference between revisions of "Bot Playground/Built-in Functions/process.name"

From SmartBots Developers Docs
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:{{SUBPAGENAME}}}} <onlyinclude>Returns current script name.</onlyinclude> <syntaxhighlight lang="javascript"> console.log(process.name); </syntaxhighlight> {{...")
 
 
Line 1: Line 1:
 
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
 
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
<onlyinclude>Returns current script name.</onlyinclude>
+
<onlyinclude>Read-only property reflecting running script name.</onlyinclude>
  
 
<syntaxhighlight lang="javascript">
 
<syntaxhighlight lang="javascript">

Latest revision as of 15:11, 13 October 2022

Read-only property reflecting running script name.

console.log(process.name);