Skip to content

Tag Archives: JavaScript-Misc

Glassmorphism is a modern way of styling web-elements of any web-page and providing a 3D as well as a glass effect. This animation effect can… Read More
Many times we get a lot of connection requests over LinkedIn, and we want to accept all of them but for that, we have to… Read More
Given many elements inside the DOM, the task is to find out which element is being currently scrolled using JavaScript. Approach: This problem can be… Read More
In this article, we will create a Gif Search Engine using JavaScript. The basic application of Gif search Engine is to search the images from… Read More
Protractor is an end-to-end test framework developed for Angular and AngularJS applications. It runs tests against the application interacting with it as a real user… Read More
In the following article,  we dynamically add and remove list items using JavaScript. We are using JavaScript to add and/or remove list items dynamically which… Read More
Protractor is an end-to-end test framework developed for Angular and AngularJS applications. It runs tests against the application interacting with it as a real user… Read More
What is Typescript ? TypeScript is a superset of JavaScript, a statically aggregated language to compose straight forward JavaScript code. TypeScript gives discretionary static composing,… Read More
Protractor is an end-to-end test framework developed for AngularJS applications, however, it also works for non-Angular JS applications. It runs tests against the application interacting… Read More
In this article, we will learn about the difference between using the _.clone() method in Lodash and using the ‘=’ operator to copy objects. Both… Read More
In this article, we will create a simple text editor like application that we can use to open, edit, and save text files with the… Read More
This article explains how to dynamically insert “id” into the table element. This can be done by simply looping over the tables and add “id”s… Read More
In the field of web development, full-stack development is playing a vital role. A full-stack development provides a solution for perfect solutions for front-end, back-end,… Read More
Fuzzy searching matches the meaning, not necessarily the precise wording or specified phrases. It performs something the same as full-text search against data to see… Read More
The filter() method creates a new array with all elements that pass the test implemented by the provided function. Approach 1: This approach uses filter()… Read More