Skip to content

Commit bd691f5

Browse files
authored
Update task.md
1 parent e13ff70 commit bd691f5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • 1-js/02-first-steps/11-logical-operators/8-if-question

1-js/02-first-steps/11-logical-operators/8-if-question/task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ importance: 5
99
¿Cuáles serán los resultados de las expresiones dentro de `if(...)`?
1010

1111
```js
12-
if (-1 || 0) alert( "first" );
13-
if (-1 && 0) alert( "second" );
14-
if (null || -1 && 1) alert( "third" );
12+
if (-1 || 0) alert( "primero" );
13+
if (-1 && 0) alert( "segundo" );
14+
if (null || -1 && 1) alert( "tercero" );
1515
```
1616

0 commit comments

Comments
 (0)