What is MEAN in javascript



What is MEAN in javascript..

Answer / hrpatelsoft@gmail.com

The MEAN (MongoDB, Express, AngularJS, and Node.js) stack is the most popular open-source JavaScript software tech stack available for building dynamic web apps where you can write both the server-side and client-side halves of the web project entirely in JavaScript.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JavaScript Interview Questions

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; }

0 Answers  


What would be the result of 2+5+”3″?

0 Answers  


What is the difference between window.onload and ondocumentready?

0 Answers  


Explain the working of timers in javascript?

0 Answers  


Is everything in javascript asynchronous?

0 Answers  






Why is var better than let?

0 Answers  


What is constructor?

1 Answers  


Define anonymous function.

0 Answers  


What is array constructor in javascript?

0 Answers  


Explain the different types of pop-up boxes you can create in JavaScript.

0 Answers  


What does the delete operator do in JavaScript?

1 Answers  


What is the way to get the status of a CheckBox?

0 Answers  


Categories