Skip to content

Commit

Permalink
corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
manufitoussiwit committed Nov 25, 2024
1 parent 246fc39 commit 306a89f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions concepts/scripts/usefull-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ parent: Scripts
grand_parent: Concepts
---

> 🚧 En construction
# Scripts utiles

Nous allons voir ici quelques scripts utiles pour vous aider lorsqu'ils deviennent incontournables.
Expand Down Expand Up @@ -291,11 +293,16 @@ Dans cet exemple, `num` contiendra `42`.
#### Conversion en booléen

```javascript
let str = 'true';
let str = 'test';
let bool = Boolean(str);
```
Dans cet exemple, `bool` contiendra `true`.
// > true

let boolTrue = Boolean(10);
// > true

let boolFalse = Boolean(0);
// false
```

### Les tableaux

Expand Down Expand Up @@ -327,7 +334,4 @@ Dans cet exemple, `bool` contiendra `true`.

## L'essentiel de la librairie Math




## Accès des objets Synapps

0 comments on commit 306a89f

Please sign in to comment.