We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ae0c3 commit 2a9ad50Copy full SHA for 2a9ad50
1 file changed
1-js/02-first-steps/11-logical-operators/article.md
@@ -49,7 +49,7 @@ let hour = 9;
49
*!*
50
if (hour < 10 || hour > 18) {
51
*/!*
52
- alert( 'The office is closed.' );
+ alert( 'Офис закрыт.' );
53
}
54
```
55
@@ -60,7 +60,7 @@ let hour = 12;
60
let isWeekend = true;
61
62
if (hour < 10 || hour > 18 || isWeekend) {
63
- alert( 'The office is closed.' ); // это выходной
+ alert( 'Офис закрыт.' ); // это выходной
64
65
66
0 commit comments