Skip to Main Content

Navigation

Minneapolis 2470 University Ave W
St Paul, MN 55114
(651) 646-0696

New York City 1216 Broadway, 2nd Floor
New York, NY 10001
(929) 322-4971

Job Application Form

To apply to one of Plaudit's open positions select the title below and complete the presented form. Please note that all positions are only open to local full-time candidates.

General Information

Contact Information

Resume

Questionnaire

Code Exercise

Though the following test may seem basic, there are many solutions and we have found it to be incredibly insightful into how candidates approach programming. This question is not intended to test JavaScript knowledge, but to demonstrate one's ability to solve problems, think critically, and create an efficient and flexible solution.

Please use CodePen or JSFiddle to write a function that merges all its string arguments and returns the result. To illustrate what this function must do, we've included examples of conditions that must evaluate to true. We encourage you to include code in your submission that asserts these conditions.

merge('abc') === 'abc';
merge('abc', '123') === 'a1b2c3';
merge('abc', '123456') === 'a1b2c3456';

Your code must not use any libraries (e.g. jQuery) within the merge function, but if desired may use a library for unit tests.

Sample Work

Please provide an example of a website you were the primary or only developer of.

Example #1

Comments