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

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...

PR wanted

_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: ![image](https://user-images.githubusercontent.com/47357585/136040601-61771586-07e7-40da-8e56-6f8b7ff47934.png) Chrome 94 displays wrong: ![image](https://user-images.githubusercontent.com/47357585/136040484-71e868c9-a1db-42a8-a273-e1f5ec68b7be.png) 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...