Blog

regular expression

JavaScript Regular expression for beginner

Today I explore with Javascript regular expression. It is interesting. I have added below what I learned so far. You have to put regular expression syntax is of two slashes. Like this /hello/. if you include i after that it will escape case sensitivity. for example /hello/i. Here is some function that works on regular expression: exec() : Return result …

working with team

Beginner guide working with a team

There are some steps that can follow to become a team player. Understand the Expectations Stay Current/ Transparent Share your progress and problems Respect your team members You all are working for the same goal to achieve. Make it comfortable with successful collaboration and respect. So that can help to make the journey enjoyable.

problem-solving

Dealing with problem-solving

There are a few steps you can follow to deal with problem-solving. If you are a team player and a problem came to you and just take it. Because, everyone knows that you can solve that problem so that it came to you. Deal with it Identify and Prioritize Keep Communicating Stay Focused Not all of the problems you can …

time-management

Time management

Priorities the projects Create a schedule for each task Evaluate changes Immediately Keep Communicating as a freelancer or in house worker you are not able to just work hours and hours. you have maintained your time to wor smartly. adapt the changes and make it in time. So that any client can trust. You are flexible on work, managed time, …

Mouse events in Javascript

There is a lot of mouse events available in JavaScript. All events have different tasks. Here is a list of all mouse events in JS. Click – click event of js which work when mouse clicked on the mentioned area. the event name as – ‘click’ Doubleclick – Its work on double click on the mouse. the event named as …

DOM child nodes – Javascript

Child notes provide different types of information about node type. We can easily check that by typing on note child. Here is the information about node child number means. 1 – its mean nodeType is an HTML element. 2 – Its mean nodeType is an attribute. 3 – Its mean nodeType is a Text node 8 – Its mean nodeType …

Basic Javascript concepts – vol 1

Comments in Javascript: There are two ways to comments on Javascript. Single line comment and multiline comment. To start with a single line comment in one line. here is the sample: //This is single-line comment Multiline comment means you can comment through two to more lines you want. sample is: /*This is multiline comment */ Variable in JavaScript: we can …

js-console

All about the console – Javascript

We can see an immediate result of our code on the console. Also, we can send errors, warnings, and info too. Here is how to do that To open the console on the browser open a new tab. After that, right-click to mouse and click on inspect element. You can do it using a keyboard. The shortcut for mac is …

siful-workstation

My web development tools

I am going to illustrate my web development kits which I use daily on my work. Text Editor: Text editor is very important to me. I used to write code on Sublime text 2. However, now I move to Visual Studio Code. Its have thousand of extensions so that I can use it. For example, Live server, Sass Compiler, Live …