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

const h2= document.createElement('h2'); h2.setAttribute('id', 'heading1'); h2.setAttribute('class', 'heading11'); document.body.appendChild(h2);

Earlier in the tutorial it was stated that using same line variable declaration is bad practice, however in the solution they were on the same line. I put them on...

To stick with the convention of the rest of the notes, and to increase overall readability, I suggest that we rename the variable `r` to `response` which is much more...

Removed paragraph texts that were indented within code blocks. Added admonitions (note and warnings)

Closes #3601, replaced `__proto__` property way of instantiating objects based on a prototype with `Object.create`.

CodeLobster editor is added

The anonymous function passed to loadScript doesn't accept any arguments but the definition passes the callback the script tag which isn't necessary at all and may induce confusion. It makes...

P1

The particular line sounded ambiguous. Tried to better phrase it.