en.javascript.info
en.javascript.info copied to clipboard
Modern JavaScript Tutorial
Related to #1900 https://github.com/javascript-tutorial/ru.javascript.info/issues/1900#issuecomment-1762957208
 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...
replace while-loop with .contains()
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`