Skip to content

Commit

Permalink
Update js_builtin_fr.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Miiraak committed Jun 1, 2024
1 parent e760c51 commit ded1b50
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Info-Doc-Wiki/JavaScript/js_builtin_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Vous permet d'inséré des délais entre les commandes.
```js
delay(500); // Délais de 500ms
```

---
### print
Affiche un message sur la console de commande.

Expand All @@ -31,19 +33,29 @@ Les arguments suivants sont supportés :
print("string1", "string2", 123);
```

---
### console.log

---
### console.warn

---
### console.error

---
### console.debug
Similare à `print` mais affiche seulement en sorte de la serial console avec le niveau de log correspondant.

---
### to_string
Convertit un nombre en chaine de caractère.

##### Examples:
```js
to_string(123)
```

---
### to_hex_string
Convertit un nombre en chaîne de caratère hexadécimal.

Expand Down

0 comments on commit ded1b50

Please sign in to comment.