JS Object's 10 Utility Methods
An object in JavaScript is a collection of properties. This article will cover the most important utility functions that you may need dealing with objects in JavaScript. JavaScript Objec...
JS Object Oriented Programming
Object Oriented programming (OOP) is a programming concepts that involves organizing code into objects that can interact with each other. JavaScript is a language that also supports OOP. ...
Ways to Improve Code Quality
Code quality refers to how well-written and maintainable software code is. It involves factors such as readability, efficiency, scalability, reliability, maintainability and security. Hig...
JavaScript async/await Functions
What async/await in JavaScript? Async/await functions, a new addition with ES2017 (ES8), help us even more in allowing us to write completely synchronous-looking code while performing as...