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

Related to #1900 https://github.com/javascript-tutorial/ru.javascript.info/issues/1900#issuecomment-1762957208

P1

![ffdsfsd](https://github.com/javascript-tutorial/en.javascript.info/assets/119450324/a4a0e929-4dc3-4eaa-80e2-54b93d9f3f5d) https://javascript.info/function-prototype - on this page in the summary we have this statement: > The value of F.prototype should be either an object or null: other values won’t work. But...

var button = document.createElemennt('button') button.innerText('Click Me'); function clickMe() { console.log('click me'); } button.addEventListener('click', clickMe);

in Functions section, exactly inside naming conventions, you recommend to prefix a function with check... if the function returns a true/false, yet in one of the examples, you named a...

minor fixes for readability while i was trying to understand `WeakRef`