classes
6 10 2015
Maks Nemisj | javascript |
UPDATE (15 May 2020) : I see a lot of comments regarding TypeScript and that there is no issue with setters/getters while using static typing. Of course, you can safely use getters/setters in the environment, which guarantees static type check, but this article is about vanilla JavaScript. This article is my opinion why I think this […]
classes, getters, javascript, setters
6 07 2010
Maks Nemisj | javascript |
Summary : Do you still believe that there are only public, private and privileged members in JavaScript objects? With JavaScript, you never can be sure. Lego principle As I might have told you, I think that JavaScript is an amazing language. Even so, I would like to repeat it again. It is the ultimate language […]
classes, execution, experiment, javascript, protected, scope
30 01 2010
Maks Nemisj | javascript |
“If you don’t like ‘this’, try Zet.js” (c) M.Nemisj Plot: This article is about an experiment of avoiding “this” and “new” keywords in JavaScript and about the results of it. Harmful “new” keyword and replacement for that There are different debates flying around the internet about the safety of using “new” keyword in JavaScript. It’s […]
classes, functional OOP, javascript, module pattern, new keyword, this keyword