Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Morgan & Morgan

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Morgan & Morgan reviews | Morgan & Morgan jobs | Morgan & Morgan salaries | Morgan & Morgan benefits
      Morgan & Morgan interviewsMorgan & Morgan Frontend Developer interviewsMorgan & Morgan interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Frontend Developer Interview

      Oct 9, 2020
      Anonymous Interview Candidate
      Brooklyn, NY
      No offer
      Negative experience
      Average interview

      Application

      I applied through a recruiter. The process took 3 days. I interviewed at Morgan & Morgan (Brooklyn, NY) in Sep 2020

      Interview

      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.

      Interview questions [1]

      Question 1

      What is your career desire and want?
      1 Answer

      Other Frontend Developer Interview Reviews for Morgan & Morgan

      Frontend Developer Interview

      Oct 9, 2020
      Anonymous Interview Candidate
      New York, NY
      No offer
      Negative experience
      Average interview

      Application

      The process took 3 days. I interviewed at Morgan & Morgan (New York, NY) in Sep 2020

      Interview

      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.

      Interview questions [19]

      Question 1

      What’s the difference between the include() and require() functions?
      1 Answer

      Question 2

      How can we get the number of elements in an array?
      1 Answer

      Question 3

      What does MVC stand for and what does each component do?
      1 Answer

      Question 4

      Why would you use === instead of ==?
      1 Answer

      Question 5

      Do you have any experience with LAMP?
      1 Answer

      Question 6

      Determine the output of the code below. 
      1 Answer

      Question 7

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

      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 Answer

      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 Answer

      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 Answer

      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 Answer

      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));
      Answer question

      Question 13

      What is the difference between == and === in JavaScript?
      1 Answer

      Question 14

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

      Question 15

      What is the benefit of creating a hash map out of data stored in an array? What is a possible drawback?
      Answer question

      Question 16

      Please describe the prototype chain.
      Answer question

      Question 17

      Please describe/discuss closure in JavaScript
      Answer 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
      Answer 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 }
      Answer question