Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Wizni

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Wizni | Offres d’emploi chez Wizni | Salaires chez Wizni | Avantages sociaux chez Wizni
      Entretiens chez WizniEntretiens d’embauche pour MERN Stack Developer chez WizniEntretien chez Wizni


      Glassdoor

      • Ă€ propos
      • RĂ©compenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communautĂ©
      • Conditions d'utilisation
      • ConfidentialitĂ© et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour MERN Stack Developer

      28 mai 2025
      Candidat Ă  l'entretien anonyme
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai passé un entretien chez Wizni

      Entretien

      1. Explain the event loop, call stack, and task queue. How does JavaScript handle asynchronous operations? What happens when setTimeout, Promise, and async/await are used together? 🧠 2. What is the difference between null, undefined, and undeclared variables? Bonus: What is the result of typeof null? 🌀 3. How does JavaScript handle closures? Can you give a real-world use case? js Copy Edit function outer() { let count = 0; return function inner() { return ++count; }; } ⛓️ 4. What is a promise chain and how does it differ from async/await? When would you prefer one over the other? ⚙️ 5. What is the difference between == and ===? What are the edge cases for type coercion in JavaScript? Explain: [] == ![] Explain: [] + [], [] + {} and {} + [] 🧩 6. What is hoisting in JavaScript? What gets hoisted and what doesn’t? What’s the difference in hoisting between var, let, and const? 🧬 7. Explain prototypal inheritance vs classical inheritance. How does JavaScript’s prototype chain work? 🏗️ 8. What are JavaScript modules and how do ES6 modules differ from CommonJS? How would you implement a module loader? 🕸️ 9. How does the this keyword work in different contexts (global, object method, arrow function, etc.)? js Copy Edit const obj = { method() { console.log(this); } }; const fn = obj.method; fn(); // What is `this` here? 📚 10. What is the difference between Object.freeze(), Object.seal(), and Object.preventExtensions()? Which one allows you to modify properties but not add or delete?
      1