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...
VueJs
Posted in nuxt Vuejs

What is nuxt?

Nuxt.js is a framework for building Vue.js applications. It extends Vue.js to provide additional features such as server-side rendering (SSR), static site generation (SSG), and…

Continue Reading...
VueJs
Posted in Vuejs

What’s new in Vue3

Vue 3, released in September 2020, brought several improvements and new features over Vue 2. Here are some of the key changes: These are just…

Continue Reading...
JavaScript
Posted in Javascript

2023 Latest javascript framework

As of my last knowledge update in January 2022, several JavaScript frameworks were popular in web development. However, keep in mind that the landscape can…

Continue Reading...
Posted in Interview interview laravel

PHP Laravel Interview Questions And Answers

Q. What is Laravel? Laravel is a free and open-source PHP framework that is used to develop complex web applications. It supports the Model-View-Controller (MVC) design pattern. The Laravel framework…

Continue Reading...
React Native
Posted in react react native React Quize Reactjs

React – What to add & Not to add as Dependencies

In the previous lecture, we explored useEffect() dependencies. You learned, that you should add “everything” you use in the effect function as a dependency – i.e. all state…

Continue Reading...
React Native
Posted in react react native React Quize Reactjs

Reactjs Quiz: Events & State

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...