Category: Angular
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…
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…
Angular Question Answer
Question. What Is @inputs In Angular 2? Answer : @Input allows you to pass data into your controller and templates through html and defining custom…
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…
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…
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…
What is Deno.js
Deno was created by Ryan Dahl, the creator of Node.js. Deno is secure by default. Without permission, it cannot access files, network, or the environment….
Vuejs Interview Questions
1) What is VueJS? Vue.js is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS…
Sass Interview Questions & Answers
1) What is Sass? Explain SASS stands for Syntactically Awesome Style Sheets. SASS is the extension of the CSS which describes the document in a…
Top AngularJS (Angular 1) Interview Questions & Answers
1) What is AngularJS? AngularJS is a javascript framework used for creating single web page applications. It allows you to use HTML as your template language…