GetRef

From NSB App Studio
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

GetRef (objectName)

Description

GetRef returns a reference to an object. This can be useful when you want get the reference to a function instead of calling it.

Example

Function printTxt(txt)
  Print txt
End Function
 
A = printTxt("Call function directly")
B = GetRef(printTxt)
B("Call function indirectly")

Output

Call function directly.
Call function indirectly.

Related Items

Form