Is javascript server side or client side?



Is javascript server side or client side?..

Answer / Anshu Baliyan

JavaScript can be used both on the client-side (running in a web browser) and the server-side (using frameworks like Node.js).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JavaScript Interview Questions

What does question mark mean in react?

1 Answers  


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

1 Answers  


What are the security related issues in JavaScript scripts?

3 Answers   Four soft,


If an array with name as "names" contain three elements, then how will you print the third element of this array?

1 Answers  


What are the methods of validating whether the form is secure?

1 Answers  


What are the primitive data types in JavaScript?

1 Answers  


What is strict mode in javascript?

1 Answers  


Is javascript a dynamic language?

1 Answers  


Where can I learn javascript?

1 Answers  


What is strict mode?

1 Answers  


What is the use of a set object in javascript?

1 Answers  


What is design pattern in javascript? Explain

1 Answers  


Categories