JS: camelCase changes

This commit is contained in:
Willy-JL
2024-10-16 01:55:00 +01:00
parent a85819f37e
commit c8b3bf1869
6 changed files with 15 additions and 15 deletions

View File

@@ -40,11 +40,11 @@ print("string1", "string2", 123);
## console.debug
Same as `print`, but output to serial console only, with corresponding log level.
## to_string
## toString
Convert a number to string with an optional base.
### Examples:
```js
to_string(123) // "123"
to_string(123, 16) // "0x7b"
toString(123) // "123"
toString(123, 16) // "0x7b"
```