Different ways to achieve encapsulation in JavaScript(ES6): ๐ May 18, 2019 · โ 6 min read · โ๏ธ Iskander Samatov In this post, I'm going over various techniques you can use to achieve encapsulation in JavaScript(ES6).
Book Review: John Sonmez -The Complete Software Developerโs Career Guide ๐ Apr 29, 2019 · โ 4 min read · โ๏ธ Iskander Samatov In this post, I'm writing a short review of the book "The Complete Software Developer's Career Guide" by John Sonmez.
Avoid long If/else with a Strategy Pattern ๐ Apr 21, 2019 · โ 5 min read · โ๏ธ Iskander Samatov In this post, let's cover Strategy Pattern. This pattern will help you write loosely coupled code and avoid long if/else statements.
Node.JS: Composable factory functions over classes ๐ Apr 14, 2019 · โ 6 min read · โ๏ธ Iskander Samatov Composable Factory Functions let you create objects that combine multiple features without creating a tightly coupled class hierarchy.