Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Meta

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Meta | Empleos en Meta | Sueldos en Meta | Prestaciones en Meta
      Entrevistas en MetaEntrevistas para el cargo de Full Stack Production Engineer en MetaEntrevista en Meta


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      Amazon
      3.7★Remuneración y prestaciones
      avatar
      Maze
      4.5★Remuneración y prestaciones

      Entrevista para Full Stack Production Engineer

      9 dic 2019
      Candidato de entrevista anónimo
      Dublín, Dublín
      Sin ofertas
      Experiencia neutra
      Entrevista difícil

      Solicitud

      Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en Meta (Dublín, Dublín) en dic 2019

      Entrevista

      Applied for the job and hadn't heard any response for months. I received an email asking if I was still interested and a screening call was made. The screening interviewer was really nice. The 30 minute call asked about my previous experience and then a run through of some basic JS questions. I proceeded from the screening call to setup for a code interview (remote). The material suggested to prepare was front-end (HTML, CSS, JS) and core computer science subjects (algorithms, design etc.). The code interview was 1hour and wasn't with the interviewer suggested by email (surprise when I called him by the wrong name!). There seemed to be some lag on the call so conversations weren't fluid. The code questions were core Javascript questions. There were no compile or program execution, rather just to talk about problems within the code and possible solutions. I didn't progress after this stage and was informed the next working day.

      Preguntas de entrevista [1]

      Pregunta 1

      Q1: Given the following function works, what are the problems that you can identify? How would you improve on said problems? const items = [ { type: ‘phone’, color:’gold’, device: ‘Nokia’}, { type: ‘phone’, color:’bronze’, device: iPhone}, { type: tv, color:’brown’, device: Sony} ] const excludes = [ {k: ‘color’, v:’gold’}, {k: ‘type’, v:’tv’} ] function applyFilter(items, excludes) { excludes.forEach(pair => { items = items.filter(item => item[pair.k] !== pair.v) } return items } --- Q2: How would you construct the Emitter object? Emitter emitter = new Emitter(); Const sub = emitter.subscribe(‘event_name’, callback) Const sub2 = emitter.subscribe(‘event_name2’, callback2) Const sub3 =emitter.subscribe(‘event_name3’, callback) emitter.emit(‘event_name’, ‘foo’, ‘bar’, ‘baz’); sub.release() sub2.release() sub3.release()
      Responder pregunta
      2