JavaScript
Posted in Angular Javascript js Reactjs typescript Vuejs

How can you ensure accessibility when altering the DOM with JavaScript?

Ensuring accessibility when altering the DOM with JavaScript involves several best practices. Here are some key strategies to maintain or enhance accessibility: By following these…

Continue Reading...
Posted in Angular Javascript js Reactjs Vuejs

Next generation coding

“Next-generation coding” is a broad term that can refer to several emerging trends and technologies in the field of software development. Here are a few…

Continue Reading...
React Native
Posted in interview Interview Javascript js React Quize Reactjs Vuejs

React Basics Quiz

Continue Reading...
JavaScript
Posted in Angular ES6 Javascript jquery js Reactjs TS typescript

JS Array Functions

Not really next-gen JavaScript, but also important: JavaScript array functions like map() , filter() , reduce()  etc. You’ll see me use them quite a bit since a lot of React concepts rely…

Continue Reading...
JavaScript
Posted in Angular angularJS Javascript js Reactjs Vuejs

Next-Gen JavaScript

let & const Read more about let : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let Read more about const : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const let  and const  basically, replace var . You use let  instead of var  and const  instead of var  if you plan on never re-assigning…

Continue Reading...
JavaScript
Posted in Angular ES6 Javascript jquery js TS typescript

ES6 class declaration

ES6 class declaration ES6 introduced a new syntax for declaring a class as shown in this example👆 This Person class behaves like the Person type…

Continue Reading...
Posted in Javascript js

Understanding javascript numbers

JavaScript has only one type of number. Numbers can be written with or without decimals. *Adding Numbers and Strings WARNING !!JavaScript uses the + operator…

Continue Reading...
JavaScript
Posted in ES6 Interview Javascript jquery js TS typescript

What Is The Fastest Way To Load JavaScript

There are a few things you can do: Load the HTML and CSS before the javascript. This gives the browser everything it needs to layout…

Continue Reading...
Web Service Worker
Posted in HTML HTML5 Interview Javascript jquery js TS typescript

What are service workers?

Service workers allow developers to manage resource caching more efficiently so that users don’t experience interruptions even if they disconnect from the internet. This guide…

Continue Reading...
Web Workers
Posted in ES6 HTML Interview Javascript jquery js TS typescript

Web Workers

Javascript is single-threaded and multiple scripts can not execute at the same time. So if we execute any heavy computation task, then sometimes our page…

Continue Reading...