All Stories

Angular: Pipe testing with Jasmine & Karma

Pipes are great tools provided by the Angular framework. Their purpose is to transform strings such as dates, currencies,...

Apr 12 · 2 min read >

npm install — How To Minimize Its Use Under Specific Conditions

Requirements: Are you working on a single project? Do you have to run npm install each time you create a new...

Apr 4 · 1 min read >

5 JavaScript console methods that you should know

For debugging or showing the output we use the console method in javascript. most developers just use the console.log()...

Apr 1 · 45 sec read >

7 Alternatives to the div Tag in HTML

In the early stages of learning how to structure an HTML document, it’s not uncommon to end up with...

Mar 25 · 6 min read >

SQL UPDATE and DELETE Commands

UPDATE Statment UPDATE statement is a SQL DML statement used to change and update the data in tables. We will explain the UPDATE statement...

Mar 25 · 1 min read >

Useful JavaScript Arrays Methods

Arrays exist in every programming language. It’s a data structure best suited for storing multiple values. And, for doing...

Mar 25 · 2 min read >

15 Javascript codes you will always need

Shuffle an Array Shuffling an array is super easy with sort and random methods. Check if Date is Valid Use the following snippet...

Mar 14 · 1 min read >

How To Work with JSON in JavaScript

Introduction Because JSON is derived from the JavaScript programming language, it is a natural choice to use as a data format...

Mar 4 · 5 min read >

Understanding Prototypes and Inheritance in JavaScript

Introduction JavaScript is a prototype-based language, meaning object properties and methods can be shared through generalized objects that have the...

Feb 22 · 7 min read >

10 Best Practices Every React Developer Should Follow

Writing a clean react code is definitely a hard task for any new developer but using React best practices...

Feb 2 · 4 min read >