chore(i18n,curriculum): update translations (#43132)
This commit is contained in:
@ -20,7 +20,7 @@ function findGreater(a, b) {
|
||||
return "a is greater";
|
||||
}
|
||||
else {
|
||||
return "b is greater";
|
||||
return "b is greater or equal";
|
||||
}
|
||||
}
|
||||
```
|
||||
@ -29,7 +29,7 @@ function findGreater(a, b) {
|
||||
|
||||
```js
|
||||
function findGreater(a, b) {
|
||||
return a > b ? "a is greater" : "b is greater";
|
||||
return a > b ? "a is greater" : "b is greater or equal";
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user