-
console.log(...)
-
console.warn(...)
-
console.error(...)
-
fetch()
- Fetch APIFetch can also be used synchronously as follow
fetch(..., {sync: true})
-
The function does formatting of arguments using C-style printf conventions.
Returns formatted string.
In Sciter list of standard formatting types is extended by these two:
%v
- takes argument and prints it asJSON.stringify(arg)
;%V
- takes argument and prints it asJSON.stringify(arg, null, " ")
;
-
Takes input string and parses it according the format specification using C-style scanf conventions. Returns list (array) of successfully parsed values.