Mathias explains the new public class fields syntax in V8 v7.2 and Chrome 72, as well as the upcoming private class fields syntax. class IncreasingCounter {
#count = 0;
get value() {
console.log('Getting the current value!');
return this.#count;
}
increment() {
this.#count++;
}
}
|
|
How much damage can a malicious package do to a static site? Jake breaks it down, but – yeah – the only limit is our imagination. |
|
Vettery specializes in developer roles and is completely free for job seekers. Interested? Submit your profile, and if accepted, you can receive interview requests directly from top companies growing their dev teams. |
|
“JavaScript is the main cause for making websites slow.” |
|
Extensions aren’t free. How much do they cost? |
|
More of a general Computer Science article. Colin discusses the Standard Tetris specification, and then moves onto machine intelligence strategies that leads to a successful Tetris-playing AI. So many facts about Tetris can be found throughout the post, making for an interesting read. | |
|
Fun reads about software doing exactly what it was built to do — and exactly not what their consumers had intended. Danilo compiled an impressive and hilarious collection of internet folklore. I originally ran into Mail Loop from Hell and found out there were a bunch of other such stories in a list he compiled. |
|
We need to ensure that people who can’t see or recognize these icons can understand their purpose. |
|
From MDN: The CSS Object Model is a set of APIs allowing the manipulation of CSS from JavaScript. It’s like the DOM, but for the CSS rather than the HTML. It allows users to read and modify CSS style dynamically. |
|
Lessons learned from mixins, render props, HOCs, and classes. |
|
|
Comments