Tag: javascript
Civil Engineer Interview Questions and Answers
1. What Drew You to Civil Engineering? One of the most common civil engineering interview questions is, “Why do you want this job?” Employers in…
How to delete a Git branch locally
How to delete local Git branches To issue the command to delete a local Git branch, follow these steps: Open a Git BASH window or…
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…
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…
What Does jQuery Do for Me?
jQuery makes many tasks easier. Its simplistic, comprehensive API has the ability to completely changethe way you write JavaScript, with the aim of consolidating and…
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….
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…
JQuery Mobile
jQuery Mobile is a UI framework that is written in JavaScript language and used for creating mobile web applications. It works on all popular smartphones and tablets. jQuery Mobile…
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…
HTML 5 Canvas Interview questions
1) What is Canvas in HTML 5? It let us create graphics on the web page with the help of client-side scripting. 2) How does…