Showing 3 Result(s)
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 …

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 …

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 …