en.javascript.info icon indicating copy to clipboard operation
en.javascript.info copied to clipboard

Modern JavaScript Tutorial

Results 433 en.javascript.info issues
Sort by recently updated
recently updated
newest added

In the syntax for array splice method, the square bracket should not be present.

tell your opinion
review needed

Grammatical fix as one item from the list was removed.

review needed

Shouldn't "a" be assigned the value of the later operation(3+4) rather than (1+2).

review needed

I encountered an error when learning about DOM navigation, in the [Walking the DOM](https://javascript.info/dom-navigation), under the [Siblings and the parent](https://javascript.info/dom-navigation#siblings-and-the-parent) using `nextSibling` and `previousSibling`. These properties return the next and...

typeof alert isnot a function, but undefined

The code uses the function named 'askPassword' but the text above it explaining the error reason says 'ask' instead of 'askPassword'

review needed

…ons. The this argument on functions is a very nuanced but often mistreated topic. More clarification and documentation is needed to avoid bugs.

review needed

I was reading the article on Data Types, Array Methods when I saw the example code for thisArg. The example code below: ![Example code](https://github.com/user-attachments/assets/de6aabf7-a7d9-40d1-a473-e8dffd849c40) The explanation why the code would...

There's a bug in the solution posted in this task. The task requires us to group objects by id and put the grouped objects in an array keyed by id....