en.javascript.info
en.javascript.info copied to clipboard
Modern JavaScript Tutorial
See (improperly closed) https://github.com/javascript-tutorial/en.javascript.info/issues/2785 3rd comment
There is a chapter called [“Drag'n'Drop with mouse events”](https://javascript.info/mouse-drag-and-drop), and it makes a passing reference to the Drag and Drop API. There are plenty of cases where it’s appropriate to...
Hello, I'm brand new in development but fond of javascript.info I would love to participate to translation in French as it has been my job a long while ago. I...
https://jsisweird.com/ No THAT weird, most of them just conversions you need to be aware of But i'd recommend to add autoconversions list to the type-conversions sumary, And maybe a "BEWARE"...
The Summary section of page https://javascript.info/optional-chaining reads: 1. obj?.prop – returns obj.prop if obj exists, otherwise undefined. 2. obj?.[prop] – returns obj[prop] if obj exists, otherwise undefined. 3. obj.method?.() –...
If we want to be completely clear in the [object copy lesson](https://javascript.info/object-copy), we can include a snippet that mentions string interning, where since strings are immutable, only one instance is...
_First of all, thank you for creating such a comprehensive resource and making it freely available! As I often get asked about where to start learning JS, this is constantly...
Despite fd81db7 attempts to fix this issue, the problem actually persists. Safari 14 looks well:  Chrome 94 displays wrong:  But it shows well after opening the page, is...
Data Types > Arrays > Tasks > Second Task 'Array operations.' https://javascript.info/array#tasks Instruction 3 states: > "Replace the value in the middle by "Classics". Your code for finding the middle...