Skip to content Skip to sidebar Skip to footer
Showing posts with the label Oop

Javascript: Should I Be Hiding My Implementations?

As a C# programmer, I have a bit of a habit of making things private that can and should be private… Read more Javascript: Should I Be Hiding My Implementations?

Javascript Inheritance With Concise Prototype Assignment Syntax

I've defined two javascript classes using this (prototype) approach: function Parent () { t… Read more Javascript Inheritance With Concise Prototype Assignment Syntax

How Can Implement Overloading In Javascript/jquery?

Im trying to call functions with same signature. Example: There are two functions with same name: Read more How Can Implement Overloading In Javascript/jquery?

Viewing Objects In Javascript ( Under The Hood )

Im very curious as to how objects are displayed in nodejs and in this case promises. When using con… Read more Viewing Objects In Javascript ( Under The Hood )

How Can I Maintain Control Of The This Keyword When Extending Prototypes In Jquery?

I'm implementing a class-like structure in jQuery, but I'm having some trouble when I try t… Read more How Can I Maintain Control Of The This Keyword When Extending Prototypes In Jquery?

Oo Jquery And Classes

I'm working on a site and using JQuery for essentially the first time. I've mostly used Mo… Read more Oo Jquery And Classes

Node.js Global Variable And Typescript

I need to have some strongly-typed global variables. As mentioned here: Extending TypeScript Global… Read more Node.js Global Variable And Typescript

Javascript Oop - Inheritance, Prototyping, Callback Function

I'm trying to use OOP in Javascript with inheritance, prototyping and callback functions. Would… Read more Javascript Oop - Inheritance, Prototyping, Callback Function