commit e7ca18a0e0e3bb8445de65f3392ce4d7d8b2172b Author: Darcy Clarke Date: Thu Feb 9 16:43:19 2012 -0700 Added questions and readme diff --git a/README.md b/README.md new file mode 100644 index 0000000..57e5ea4 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +#Front-end Developer Job Interview Questions + +@version 1.0 + +##Contributors + +@ajpiano (http://ajpiano.com/), @paul_irish (http://paulirish.com/), @SlexAxton (http://alexsexton.com/), @boazsender (http://boazsender.com/), @vladikoff (http://vladfilippov.com/), @gf3 (http://gf3.ca/) and @darcy_clarke (http://darcyclarke.me) \ No newline at end of file diff --git a/interview-questions.html b/interview-questions.html new file mode 100644 index 0000000..1ccaf70 --- /dev/null +++ b/interview-questions.html @@ -0,0 +1,202 @@ +

JOB INTERVIEW QUESTIONAIRRE

+

General Questions:

+ +

+

+

HTML-Specific Questions:

+ +

+

+

JS-Specific Questions

+ +

+

+

JS-Code Examples:

+
+	~~3.14
+
+ Question: What value is returned from the above statement? Answer: 3 +
+	"i'm a lasagna hog".split("").reverse().join("");
+
+ Question: What value is returned from the above statement? Answer: "goh angasal a m'i" +
+	( window.foo || ( window.foo = "bar" ) );
+
+ Question: What is the value of window.foo? Answer: "bar" +
+	var foo = "Hello"; (function() { var bar = " World"; alert(foo + bar); })(); alert(foo + bar);
+
+ Question: What is the outcome of the two alerts above? Answer: "Hello World" & ReferenceError: bar is not defined +

+

+

jQuery-Specific Questions:

+ +

+

+

CSS-Specific Questions:

+ +

+

+

Optional fun Questions:

+