├── .all-contributorsrc ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cs └── README.md ├── css ├── README.md └── box.gif ├── ejemplos ├── Amazon │ ├── README.md │ ├── accordeon.gif │ ├── accordion_open_close.png │ └── widget.png ├── Groupon │ ├── README.md │ └── ticktock.md ├── Linkedin │ ├── README.md │ ├── frontend1.md │ └── user_line.png ├── README.md └── Uber │ └── README.md ├── generales └── README.md ├── html ├── README.md └── shadow_dom.png ├── js ├── README.md └── event_delegation.png ├── package.json ├── tips_interviewees └── README.md ├── tips_interviewers_and_recruiters └── README.md ├── tricky └── README.md └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/README.md -------------------------------------------------------------------------------- /cs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/cs/README.md -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/css/README.md -------------------------------------------------------------------------------- /css/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/css/box.gif -------------------------------------------------------------------------------- /ejemplos/Amazon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Amazon/README.md -------------------------------------------------------------------------------- /ejemplos/Amazon/accordeon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Amazon/accordeon.gif -------------------------------------------------------------------------------- /ejemplos/Amazon/accordion_open_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Amazon/accordion_open_close.png -------------------------------------------------------------------------------- /ejemplos/Amazon/widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Amazon/widget.png -------------------------------------------------------------------------------- /ejemplos/Groupon/README.md: -------------------------------------------------------------------------------- 1 | 1. [TICK TOCK](./ticktock.md) 2 | -------------------------------------------------------------------------------- /ejemplos/Groupon/ticktock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Groupon/ticktock.md -------------------------------------------------------------------------------- /ejemplos/Linkedin/README.md: -------------------------------------------------------------------------------- 1 | ### LinkedIn 2 | 3 | - [Front End Interview 1](./frontend1.md) 4 | -------------------------------------------------------------------------------- /ejemplos/Linkedin/frontend1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Linkedin/frontend1.md -------------------------------------------------------------------------------- /ejemplos/Linkedin/user_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Linkedin/user_line.png -------------------------------------------------------------------------------- /ejemplos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/README.md -------------------------------------------------------------------------------- /ejemplos/Uber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/ejemplos/Uber/README.md -------------------------------------------------------------------------------- /generales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/generales/README.md -------------------------------------------------------------------------------- /html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/html/README.md -------------------------------------------------------------------------------- /html/shadow_dom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/html/shadow_dom.png -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/js/README.md -------------------------------------------------------------------------------- /js/event_delegation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/js/event_delegation.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/package.json -------------------------------------------------------------------------------- /tips_interviewees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/tips_interviewees/README.md -------------------------------------------------------------------------------- /tips_interviewers_and_recruiters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/tips_interviewers_and_recruiters/README.md -------------------------------------------------------------------------------- /tricky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/tricky/README.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fforres/preguntas-y-respuestas-entrevistas-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------