fix(curriculum): fix spelling from behaviour to behavior (#64083)

This commit is contained in:
Giftea ☕
2025-11-23 19:55:24 +01:00
committed by GitHub
parent b72a3982e5
commit e270a8dc4b
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ console.log(undefined < 0); // false (NaN < 0 is false)
console.log(undefined >= 0); // false (NaN >= 0 is false)
```
- **Comparisons and `null`**: The `null` type represents the intentional absence of a value. `null` converts to `0` in numeric contexts, which may result in unexpected behaviour in numeric comparisions:
- **Comparisons and `null`**: The `null` type represents the intentional absence of a value. `null` converts to `0` in numeric contexts, which may result in unexpected behavior in numeric comparisions:
```js
console.log(null < 0); // false (0 < 0 is false)

View File

@@ -604,7 +604,7 @@ console.log(undefined < 0); // false (NaN < 0 is false)
console.log(undefined >= 0); // false (NaN >= 0 is false)
```
- **Comparisons and `null`**: The `null` type represents the intentional absence of a value. `null` converts to `0` in numeric contexts, which may result in unexpected behaviour in numeric comparisions:
- **Comparisons and `null`**: The `null` type represents the intentional absence of a value. `null` converts to `0` in numeric contexts, which may result in unexpected behavior in numeric comparisions:
```js
console.log(null < 0); // false (0 < 0 is false)