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 |
What does question mark mean in react?
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; }
What are the security related issues in JavaScript scripts?
If an array with name as "names" contain three elements, then how will you print the third element of this array?
What are the methods of validating whether the form is secure?
What are the primitive data types in JavaScript?
What is strict mode in javascript?
Is javascript a dynamic language?
Where can I learn javascript?
What is strict mode?
What is the use of a set object in javascript?
What is design pattern in javascript? Explain