Skip to content

Commit

Permalink
format to work
Browse files Browse the repository at this point in the history
  • Loading branch information
GrayWolf committed Aug 8, 2023
1 parent 32007af commit 6410023
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ console.log("Esto es lo que un " + subText.sub() + " parece.");

Este ejemplo produce el mismo resultado que el siguiente código HTML:

```html
Esto es lo que <sup>superscript</sup> parece. Esto es lo que
<sub>subscript</sub> parece.
```html-nolint
Esto es lo que <sup>superscript</sup> parece.
Esto es lo que <sub>subscript</sub> parece.
```

### Vea También
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ Operador: var1 % var2

### Resto con dividendo negativo

```js
(-12 % 5) - // -2
(1 % 2) - // -1
(4 % 2); // -0
```js-nolint
-12 % 5 // -2
-1 % 2 // -1
-4 % 2 // -0
```

### Resto con NaN
Expand Down

0 comments on commit 6410023

Please sign in to comment.