UrbanPro
true
Vishal Shetty Node.JS trainer in Bangalore

Vishal Shetty

Techie who loves to code in Javascript, React & Node.

Electronic City, Bangalore, India - 560100.

Verified 6 yrs of Exp 6 Students

ā‚¹ 625 per hour

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Vishal Shetty

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I am a tech-savvy and a full stack web developer who loves coding. Having intensively worked for 6 years on the technologies like JavaScript, Node, React, React Native, Angular, Bootstrap and CSS3 I am having a keen interest in teaching the students with the latest technology in the market. I have helped many students to be a successful full stack web developer and boost their careers.

Languages Spoken

Marathi Mother Tongue (Native)

Hindi Proficient

English Proficient

Education

Dr. D.Y.Patil Institute of Engineering and Technology, Pune 2013

Bachelor of Engineering (B.E.)

Address

Electronic City, Bangalore, India - 560100

Verified Info

ID Verified

Education Verified

Phone Verified

Email Verified

Facebook Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

React JS Training
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in React JS Training

6

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

6

Node.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Node.JS Training

6

Reviews (3)

5 out of 5 3 reviews

Vishal Shetty https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/5860186-small.jpg Electronic City
5.0053
Vishal Shetty
A

React JS

"Awesome training experience. Vishal explained in detail each and every topic. "

Vishal Shetty
S

React JS

"I have learned so much, I feel confident and the knowledge I gained from Vishal sir is seriously very helpful for me. Thank you so much sir. "

Vishal Shetty
B

React JS

"It was an intensive, knowledge imparting hands-on experience, where Vishal Sir as my mentor help me built my knowledge of Reactjs from scratch. Best mentor with a willingness to share skills, knowledge, and expertise. "

Have you attended any class with Vishal?

FAQs

1. Which classes do you teach?

I teach Java Script Training, Node.JS and React JS Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 6 years.

Answers by Vishal (5)

Answered on 03/04/2019 Learn IT Courses/Java Script Training

Before you start learning React.js, make sure you know at least the basics of Javascript. As React JS is front end library, you will have to study CSS as well, but if you are new to CSS stuff, then that won't cause any issues for learning React JS.You can learn CSS anytime, but planning to start learning... ...more

Before you start learning React.js, make sure you know at least the basics of Javascript.
As React JS is front end library, you will have to study CSS as well, but if you are new to CSS stuff, then that won't cause any issues for learning React JS.
You can learn CSS anytime, but planning to start learning React JS then learn the basics of JavaScript and know the difference between Synchronous & Asynchronous Programming.

Answers 3 Comments
Dislike Bookmark

Answered on 03/04/2019 Learn IT Courses/Java Script Training

Don't get confused with Node.js and TypeScript, they both are different. Node.js is a JS framework which runs on the server side and uses Javascript or Typescript. Whereas Typescript is a superset of Javascript, that means TypeScript is written on top of the Javascript by Microsoft. So you can either... ...more

Don't get confused with Node.js and TypeScript, they both are different.

Node.js is a JS framework which runs on the server side and uses Javascript or Typescript.

Whereas Typescript is a superset of Javascript, that means TypeScript is written on top of the Javascript by Microsoft. 

So you can either use Javascript or Typescript for writing the code, this is applicable to Node.js as well.

You can say that few of the JavaScript issues are addressed by Microsoft and they were rectified in TypeScript.

Example, In javascript variable declaration, is done like this

var a = 10;

Here, we aren't specifying the type of variable a, if 10 is assigned then Javascript considers it as a type Number and if a string is assigned then Javascript considers it as a type String.

As humans tend to make mistakes, there might be a possibility that somewhere we assign a variable 'a' the string value or any other type value,

say a = 'string' or a = true;

So in Javascript, we are not binding the variable to any type, such issues were addressed by Microsoft and using TypeScript you avoid such issues.

In typescript, 

a:number = 10;

If by mistake, we assign variable 'a' value of type string or any type, It will throw an error message.

a = 'string' or a = true, it will not be allowed using TypeScript but is allowed in Javascript.

 

So, Learn Javascript, then learn Typescript then go for Node.js.

And yes learning Node JS is worth give it a try. 

 

Answers 6 Comments
Dislike Bookmark

Answered on 13/02/2019 Learn IT Courses/Angular.JS +2 IT Courses React JS

I am working on React JS and Angular JS as well. I am a beginner in Angular JS but I have 2 years of experience in React JS. Trust me learning React JS was much much much easier as compared to Angular JS. Both of them have there own pros and cons, but why learning React is easy? Because React JS is just... ...more

I am working on React JS and Angular JS as well. I am a beginner in Angular JS but I have 2 years of experience in React JS. Trust me learning React JS was much much much easier as compared to Angular JS. Both of them have there own pros and cons, but why learning React is easy? Because React JS is just a library and Facebook has kept the flow and everything simpler in it, whereas Angular JS is a complete framework where you don't have to depend on many external libraries which makes it a bit hard to learn as compared to React JS. The change detection functionality of React JS is much better than what Angular JS is having. 

Answers 62 Comments
Dislike Bookmark

Answered on 17/01/2019 Learn IT Courses/Java +3 IT Courses/Java Script Training Tuition/BCA Tuition/Java Programming IT Courses/Java/Core Java

None of them are bad for SEO, the SEO problem with single page applications is that when Google web crawler comes for indexing your web application build with React/Angular/Vue it finds there no HTML tags and data. Everything in React/Angular is Javascript and crawlers only understands HTML content.... ...more

None of them are bad for SEO, the SEO problem with single page applications is that when Google web crawler comes for indexing your web application build with React/Angular/Vue it finds there no HTML tags and data. Everything in React/Angular is Javascript and crawlers only understands HTML content. So crawlers find that these web applications have no HTML content or it is blank, then it will not index your web pages and hence your sites won't be found in the search engines. To tackle this problem there are many packages available which generate the actual HTML which crawlers can index. There is the concept of server-side rendering which solves this issue. In both React and Angular, you can use server-side rendering and your web pages will be crawled and indexed by the crawlers. Read this article https://angular.io/guide/universal#why-use-server-side-rendering

Answers 2 Comments
Dislike Bookmark

Answered on 09/01/2019 Learn IT Courses/Angular.JS +1 React JS

First question, why you want to learn both React and Angular at the same time? The purpose they both serve is same, so you should concentrate on anyone and then you can learn another one. Even if both serve the same purpose, the flow of both is a bit different, If you start learning both at the same... ...more

First question, why you want to learn both React and Angular at the same time?

The purpose they both serve is same, so you should concentrate on anyone and then you can learn another one.

Even if both serve the same purpose, the flow of both is a bit different, If you start learning both at the same time you will be more confused and you will end up learning none.

I learned React JS first and worked on it for at least a 1 year and got hands-on it, then I started learning Angular and now getting hands-on on it. 

It was very easy for me to learn the Angular JS as I was already familiar with React JS and the terminologies and building blocks of the React library.

So start learning one, do at least a single medium scaled project and then proceed further learning another one.

Answers 1 Comments
Dislike Bookmark

Teaches

React JS Training
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in React JS Training

6

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

6

Node.JS Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Node.JS Training

6

5 out of 5 3 reviews

Vishal Shetty
A

React JS

"Awesome training experience. Vishal explained in detail each and every topic. "

Vishal Shetty
S

React JS

"I have learned so much, I feel confident and the knowledge I gained from Vishal sir is seriously very helpful for me. Thank you so much sir. "

Vishal Shetty
B

React JS

"It was an intensive, knowledge imparting hands-on experience, where Vishal Sir as my mentor help me built my knowledge of Reactjs from scratch. Best mentor with a willingness to share skills, knowledge, and expertise. "

Have you attended any class with Vishal?

Answers by Vishal Shetty (5)

Answered on 03/04/2019 Learn IT Courses/Java Script Training

Before you start learning React.js, make sure you know at least the basics of Javascript. As React JS is front end library, you will have to study CSS as well, but if you are new to CSS stuff, then that won't cause any issues for learning React JS.You can learn CSS anytime, but planning to start learning... ...more

Before you start learning React.js, make sure you know at least the basics of Javascript.
As React JS is front end library, you will have to study CSS as well, but if you are new to CSS stuff, then that won't cause any issues for learning React JS.
You can learn CSS anytime, but planning to start learning React JS then learn the basics of JavaScript and know the difference between Synchronous & Asynchronous Programming.

Answers 3 Comments
Dislike Bookmark

Answered on 03/04/2019 Learn IT Courses/Java Script Training

Don't get confused with Node.js and TypeScript, they both are different. Node.js is a JS framework which runs on the server side and uses Javascript or Typescript. Whereas Typescript is a superset of Javascript, that means TypeScript is written on top of the Javascript by Microsoft. So you can either... ...more

Don't get confused with Node.js and TypeScript, they both are different.

Node.js is a JS framework which runs on the server side and uses Javascript or Typescript.

Whereas Typescript is a superset of Javascript, that means TypeScript is written on top of the Javascript by Microsoft. 

So you can either use Javascript or Typescript for writing the code, this is applicable to Node.js as well.

You can say that few of the JavaScript issues are addressed by Microsoft and they were rectified in TypeScript.

Example, In javascript variable declaration, is done like this

var a = 10;

Here, we aren't specifying the type of variable a, if 10 is assigned then Javascript considers it as a type Number and if a string is assigned then Javascript considers it as a type String.

As humans tend to make mistakes, there might be a possibility that somewhere we assign a variable 'a' the string value or any other type value,

say a = 'string' or a = true;

So in Javascript, we are not binding the variable to any type, such issues were addressed by Microsoft and using TypeScript you avoid such issues.

In typescript, 

a:number = 10;

If by mistake, we assign variable 'a' value of type string or any type, It will throw an error message.

a = 'string' or a = true, it will not be allowed using TypeScript but is allowed in Javascript.

 

So, Learn Javascript, then learn Typescript then go for Node.js.

And yes learning Node JS is worth give it a try. 

 

Answers 6 Comments
Dislike Bookmark

Answered on 13/02/2019 Learn IT Courses/Angular.JS +2 IT Courses React JS

I am working on React JS and Angular JS as well. I am a beginner in Angular JS but I have 2 years of experience in React JS. Trust me learning React JS was much much much easier as compared to Angular JS. Both of them have there own pros and cons, but why learning React is easy? Because React JS is just... ...more

I am working on React JS and Angular JS as well. I am a beginner in Angular JS but I have 2 years of experience in React JS. Trust me learning React JS was much much much easier as compared to Angular JS. Both of them have there own pros and cons, but why learning React is easy? Because React JS is just a library and Facebook has kept the flow and everything simpler in it, whereas Angular JS is a complete framework where you don't have to depend on many external libraries which makes it a bit hard to learn as compared to React JS. The change detection functionality of React JS is much better than what Angular JS is having. 

Answers 62 Comments
Dislike Bookmark

Answered on 17/01/2019 Learn IT Courses/Java +3 IT Courses/Java Script Training Tuition/BCA Tuition/Java Programming IT Courses/Java/Core Java

None of them are bad for SEO, the SEO problem with single page applications is that when Google web crawler comes for indexing your web application build with React/Angular/Vue it finds there no HTML tags and data. Everything in React/Angular is Javascript and crawlers only understands HTML content.... ...more

None of them are bad for SEO, the SEO problem with single page applications is that when Google web crawler comes for indexing your web application build with React/Angular/Vue it finds there no HTML tags and data. Everything in React/Angular is Javascript and crawlers only understands HTML content. So crawlers find that these web applications have no HTML content or it is blank, then it will not index your web pages and hence your sites won't be found in the search engines. To tackle this problem there are many packages available which generate the actual HTML which crawlers can index. There is the concept of server-side rendering which solves this issue. In both React and Angular, you can use server-side rendering and your web pages will be crawled and indexed by the crawlers. Read this article https://angular.io/guide/universal#why-use-server-side-rendering

Answers 2 Comments
Dislike Bookmark

Answered on 09/01/2019 Learn IT Courses/Angular.JS +1 React JS

First question, why you want to learn both React and Angular at the same time? The purpose they both serve is same, so you should concentrate on anyone and then you can learn another one. Even if both serve the same purpose, the flow of both is a bit different, If you start learning both at the same... ...more

First question, why you want to learn both React and Angular at the same time?

The purpose they both serve is same, so you should concentrate on anyone and then you can learn another one.

Even if both serve the same purpose, the flow of both is a bit different, If you start learning both at the same time you will be more confused and you will end up learning none.

I learned React JS first and worked on it for at least a 1 year and got hands-on it, then I started learning Angular and now getting hands-on on it. 

It was very easy for me to learn the Angular JS as I was already familiar with React JS and the terminologies and building blocks of the React library.

So start learning one, do at least a single medium scaled project and then proceed further learning another one.

Answers 1 Comments
Dislike Bookmark

Vishal Shetty describes himself as Techie who loves to code in Javascript, React & Node.. He conducts classes in Java Script Training, Node.JS and React JS. Vishal is located in Electronic City, Bangalore. Vishal takes at students Home and Online Classes- via online medium. He has 6 years of teaching experience . Vishal has completed Bachelor of Engineering (B.E.) from Dr. D.Y.Patil Institute of Engineering and Technology, Pune in 2013. HeĀ is well versed in Hindi, English and Marathi. Vishal has got 3 reviews till now with 100% positive feedback.

X

Share this Profile

Recommended Profiles

Harish Soni

Harish Soni photo Baner, Pune

Vipul Singh

Vipul Singh photo Wagle I.E., Thane

Sagar Munjal

Sagar Munjal photo Koramangala 1st Block, Bangalore

Kush

Kush photo Yeswanthpur Shankar Nagar, Bangalore

Anand Singh

Anand Singh photo Whitefield, Bangalore

Harish B N

Harish B N photo Basavanagudi, Bangalore

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more