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

      Morgan & Morgan

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Morgan & Morgan | Offres d’emploi chez Morgan & Morgan | Salaires chez Morgan & Morgan | Avantages sociaux chez Morgan & Morgan
      Entretiens chez Morgan & MorganEntretiens d’embauche pour Frontend Developer chez Morgan & MorganEntretien chez Morgan & Morgan


      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 Frontend Developer

      9 oct. 2020
      Candidat à l'entretien anonyme
      New York, NY

      Autres retours d’entretien d’embauche pour un poste comme Frontend Developer chez Morgan & Morgan

      Entretien pour Frontend Developer

      9 oct. 2020
      Candidat à l'entretien anonyme
      Brooklyn, NY
      Aucune offre
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      Le processus a pris 3 jours. J'ai passé un entretien chez Morgan & Morgan (New York, NY) en sept. 2020

      Entretien

      I received an inquiry last year for Head of Engineering which didn't complete in time. I asked again this year and their Lead Frontend Developer role was now open. I talked the usual round 1 which is merely 30m of personality bits with the external recruiter. Round 2 was with the hiring company's web design associate who was fielding who might be worth referring to the hiring manager. Round 3 was 1h each with 2 frontend developers in a real time tech quiz in Doc typed to document the answer so the team could compare their many candidates. The second interviewer was visibly disinterested and gave me an empty unsaved CodePen and asked me to spend 30m mocking up the HTML & CSS of Airbnb.com's homepage. The CodePen was seen to not compile my sass and the disinterested interviewer said it was a bummer and ultimately didn't present my work to the team. Some important context about who's who. For the People is their long-time exclusive external recruitment firm. Morgan and Morgan PA is a collection of dozens of law firms most of whom refer to their owner while remaining branded as-was. Their Classaction division has been repurposed to act as their web development arm. Their projects are mostly to digest law firms' sites into one system of non-shared look, feel, and backend.

      Questions d'entretien [19]

      Question 1

      What’s the difference between the include() and require() functions?
      1 réponse

      Question 2

      How can we get the number of elements in an array?
      1 réponse

      Question 3

      What does MVC stand for and what does each component do?
      1 réponse

      Question 4

      Why would you use === instead of ==?
      1 réponse

      Question 5

      Do you have any experience with LAMP?
      1 réponse

      Question 6

      Determine the output of the code below. 
      1 réponse

      Question 7

      If $x = 100 + “25%” + “$40” what is the value of $x and why?
      1 réponse

      Question 8

      How would you declare a function that receives one parameter name hello? If hello is true, then the function must print hello, but if the function doesn’t receive hello or hello is false the function must print bye.
      1 réponse

      Question 9

      Please write what the 4 console logs will output below: const objectQuiz = {     foo: "bar",     func: function() {         let that = this; //         let self = there;         console.log(this.foo);          console.log(that.foo);         console.log(self.foo);         (function() {             console.log(this.foo);             console.log(that.foo);         }());     } }; objectQuiz.func();
      1 réponse

      Question 10

      Please write what the 2 console logs will output below: console.log(0.1 + 0.2); console.log((0.1 + 0.2) === 0.3);
      1 réponse

      Question 11

      Please write the numbers 1-4 in the order they will print to the console in the following function: (function() {     console.log(1);      setTimeout(function(){console.log(2)}, 500);      setTimeout(function(){console.log(3)}, 0);      console.log(4); })();
      1 réponse

      Question 12

      What will the following code output to the console? console.log((function f(x){return ((x > 1) ? x * f(x-1) : 1)})(7));
      Répondre à cette question

      Question 13

      What is the difference between == and === in JavaScript?
      1 réponse

      Question 14

      What is meant by pass by reference vs pass by value? let x = 5; let y = x; //by value
      1 réponse

      Question 15

      What is the benefit of creating a hash map out of data stored in an array? What is a possible drawback?
      Répondre à cette question

      Question 16

      Please describe the prototype chain.
      Répondre à cette question

      Question 17

      Please describe/discuss closure in JavaScript
      Répondre à cette question

      Question 18

      Please write a function that can be invoked as either sum(x, y) or sum(x)(y) and returns x + y. Eg: console.log(sum(2,3));   // Outputs 5 console.log(sum(2)(3));  // Outputs 5
      Répondre à cette question

      Question 19

      Please write a function that accepts a string and returns a boolean value that is true if, and only if, the string contains all characters in the alphabet. Eg:  console.log(isPangram(‘The quick brown fox jumps over the lazy dog’)); // true console.log(isPangram(‘happy birthday to you!’); // false //brutal Check each character for indexOf in dictionary array of all letters a-z Function check(x) {   let alpha = [‘a’, ‘b’ …]   For (a in alpha) {     if(x.indexOf(‘t’) == -1)) {       Return false;     }    Return true; } //go 2 Function check(x){   Set alpha = [a,b,c…]   Let pusher = new Set()   For(var i =0; i++; i<x.length){    If (currentCha is a-z) {     pusher.push(x.charAt(i)) If set.length === 26 return true   }        }   Let alpha = [‘a’, ‘b’...]   } Return false }
      Répondre à cette question
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 3 jours. J'ai passé un entretien chez Morgan & Morgan (Brooklyn, NY) en sept. 2020

      Entretien

      I inquired with their internal recruiter about the role. They referred me to talk with a very junior web designer who ran through personality checks and career desires, the softball stuff. Then 1h each with 2 developers. The first was all js and lively. The second was dismissive, disinterested, and largely silent and irresponsive who ultimately didn't present my results to the team so they never replied in any manner. I returned the favor.

      Questions d'entretien [1]

      Question 1

      What is your career desire and want?
      1 réponse