FrontEnd

Micro Frontends-Revolutionizing Frontend

Micro frontends are what we get while we carry the microservice technique to the the front cease. In other words, a micro frontend is made of components owned…

2 years ago

How to debug JavaScript Code

Errors are not necessarily bad. In fact, most of the time, they help us identify issues with our code. You…

2 years ago

Ways to write a JavaScript Function

JavaScript is a lightweight, interpreted, or just-in-time compiled programming language. It is used by programmers across the world to create…

2 years ago

what is Polyfill?

A polyfill is a piece of code used to provide modern functionality on older browsers that do not natively support…

2 years ago

JavaScript Exercises

1) const variable must be initialized: function test(){ const mydog = 'spotty' // good mydog = 'fluffy' // error: assignment…

2 years ago

JavaScript Code Editors

Code Editors are tools typically used by programmers and web developers to write and edit code. They are used for…

2 years ago

Modern JavaScript Tutorial

JavaScript is an open-source and most popular client-side scripting language supported by all browsers. JS is a programming language that adds…

2 years ago

WebdriverIO

WebdriverIO is a mobile and browser test automation framework that has recently become quite popular in the software testing industry. …

2 years ago

Angular 14 New Features

Angular 14, the latest version of the TypeScript-based free and open-source web app framework was launched on 2nd June 2022.  How…

2 years ago

JavaScript Functions

When developing an application, you often need to perform the same action in many places. For example, you may want…

2 years ago