Skip to content

Commit

Permalink
Update index.md (#18320)
Browse files Browse the repository at this point in the history
Co-authored-by: Nathália Pissuti <[email protected]>
  • Loading branch information
tirthrami02 and nathipg authored Feb 26, 2024
1 parent 3146ddc commit 9a578ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/pt-br/web/javascript/reference/classes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ comer(); // objeto global

Propriedades de instâncias devem ser definidas dentro dos métodos da classe:

```
```js
class Retangulo {
constructor(altura, largura) {
this.altura = altura;
Expand All @@ -185,7 +185,7 @@ class Retangulo {

Propriedades de dados estáticos e propriedades de dados prototipados (prototype) devem ser definidos fora da declaração do corpo da classe.

```
```js
Retangulo.larguraEstatico = 20;
Retangulo.prototype.larguraPrototipagem = 25;
```
Expand Down

0 comments on commit 9a578ff

Please sign in to comment.