en.javascript.info
en.javascript.info copied to clipboard
Modern JavaScript Tutorial
fix typo
Please replace "_proto_" property to "Object.getPrototypeOf()" method
https://github.com/javascript-tutorial/en.javascript.info/blob/285083fc71ee3a7cf55fd8acac9c91ac6f62105c/1-js/99-js-misc/01-proxy/article.md?plain=1#L712 As per MDN and ECMASCRIPT, use of this approach seems to be deemed legacy and will at some point be withdrawn from browsers. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.prototype.__proto__ The alternative seems to...
Please add typescript feature to learn that as well with javascript
## The EventSource's message object not have a retry property bug > server.js ```js import fs from 'node:fs'; import express from 'express'; const app = express(); app.use(express.static('public')); const convertImageToBase64URL =...
Fixing typo in function object article
Run overlay as not showing on the website because of faulty code. Fixed.