You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Josh-Cena
added
to move
If the issue doesn't belong in Content but elsewhere in the MDN org
and removed
Content:JS
JavaScript docs
needs triage
Triage needed by staff and/or partners. Automatically applied when an issue is opened.
labels
Jul 19, 2023
MDN URL
https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Operators/super
What specific section or headline is this issue about?
super-llamando_a_métodos_estáticos
What information was incorrect, unhelpful, or incomplete?
For example:
https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Operators/super#super-llamando_a_m%C3%A9todos_est%C3%A1ticos
static logNbSides() {
return 'I have 4 sides';
}
return super.logNbSides() + ' which are all equal';
and later, when the code continues, the following is shown (translated):
Square.logDescription(); // 'Tengo 4 lados que son todos iguales'
Then it could provoke some confusions
What did you expect to see?
static logNbSides() {
return 'Tengo 4 lados';
}
return super.logNbSides() + ' que son todos iguales';
Do you have any supporting links, references, or citations?
No response
Do you have anything more you want to share?
No response
The text was updated successfully, but these errors were encountered: