Given an input array and another array that describes a new index for each element, mutate the input array so that each element ends up in their new index. Discuss the runtime of the algorithm and how you can be sure there won't be any infinite loops.
Front End Engineer Interview Questions
Front End Engineer Interview Questions
Der Schwerpunkt der Tätigkeit eines Front End Engineers liegt auf der Benutzerfreundlichkeit einer Software oder App. Beim Vorstellungsgespräch müssen Sie zeigen, dass Sie mit den Grundlagen des UX/UI-Designs vertraut sind und sich zu sauberem und für das jeweilige Produktangebot optimiertem Code bekennen. Außerdem müssen Sie die Bereitschaft haben, gemeinsam mit Back End Engineers an der Lösung von Problemen zu arbeiten. Rechnen Sie mit Fragen nach Ihrer technischen Erfahrung sowie nach Ihren Fähigkeiten bei Mitarbeiterführung und Design.
Typische Bewerbungsfragen als Front End Engineer und wie Sie diese beantworten
Frage 1: Was ist Ihr bevorzugter Arbeitsablauf oder Managementstil?
Frage 2: Wie verwalten Sie Tests, Reviews und die Versionskontrolle?
Frage 3: Was reizt Sie am meisten am Bereich UX/UI?
21,101 front end engineer interview questions shared by candidates
Given input: // could be potentially more than 3 keys in the object above items = [ {color: 'red', type: 'tv', age: 18}, {color: 'silver', type: 'phone', age: 20} ... ] excludes = [ {k: 'color', v: 'silver'}, {k: 'type', v: 'tv'}, .... ] function excludeItems(items, excludes) { excludes.forEach(pair => { items = items.filter(item => item[pair.k] === item[pair.v]); }); return items; } 1. Describe what this function is doing... 2. What is wrong with that function ? 3. How would you optimize it ?
Why do you want to work at Costco?
1. In JavaScript, write a function that takes an array as input that can contain both ints and more arrays (which can also contain an array or int) and return the flattened array. ex. [1, [2, [ [3, 4], 5], 6]] => [1, 2, 3, 4, 5, 6] 2. Using HTML and CSS, show how you would create an image that would display another image (aligned to the bottom, right) when the user hovers over the image. ex. The Facebook "edit profile picture" icon
Given a grid of characters output a decoded message. The message for the following would be IROCKA. (diagonally down right and diagonally up right if you can't go further .. you continue doing this) I B C A L K A D R F C A E A G H O E L A D
If you were building a search tool and wanted search results to pop up as you typed but the server call was taxing, write a function that gets called on every key down but calls the server when the user stops typing for 400ms.
What are your greatest technical strengths?
Implement a simple store class with set(Node, value), get(Node) and has(Node) methods, which store a given Nodes with corresponding values.
// Given var endorsements = [ { skill: 'css', user: 'Bill' }, { skill: 'javascript', user: 'Chad' }, { skill: 'javascript', user: 'Bill' }, { skill: 'css', user: 'Sue' }, { skill: 'javascript', user: 'Sue' }, { skill: 'html', user: 'Sue' } ]; getSkills = (endorsements) => { // Result // [ // { skill: 'javascript', user: ['Chad', 'Bill', 'Sue'], count: 3 }, // { skill: 'css', user: ['Sue', 'Bill'], count: 2 }, // { skill: 'html', user: ['Sue'], count: 1 } // ]; } see this image: http://i.imgur.com/UIeB3n4.png
Write an emitter class: /* emitter = new Emitter(); // 1. Support subscribing to events. sub = emitter.subscribe('event_name', callback); sub2 = emitter.subscribe('event_name', callback2); // 2. Support emitting events. // This particular example should lead to the `callback` above being invoked with `foo` and `bar` as parameters. emitter.emit('event_name', foo, bar); // 3. Support unsubscribing existing subscriptions by releasing them. sub.release(); // `sub` is the reference returned by `subscribe` above */
Viewing 1 - 10 interview questions