React Native
Posted in react react native React Quize Reactjs

Reactjs Quiz: Events & State

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...
Posted in Civil Engineer Interview

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…

Continue Reading...
Posted in Gitlab Interview

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…

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...
Posted in Angular angular 8 angularJS denojs

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

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