Added 3 JS and 1 CSS

Found a lot of these useful so added some of my own I had come up with.
This commit is contained in:
Paulo Ávila 2013-07-19 03:22:29 +02:00
parent 8e89e9764c
commit 3da4876db5
1 changed files with 6 additions and 0 deletions

View File

@ -118,6 +118,11 @@ function Person(){} var person = Person() var person = new Person()
* Why is it called a Ternary expression, what does the word "Ternary" indicate?
* What is the arity of a function?
* What is `"use strict";`? what are the advantages and disadvantages to using it?
* How to check if a value has been declared, is `undefined` or `null`?
* Explain the syntax error produced by: `function foo(){ }();` and how to avoid it.
* What is the "smallest" number possible in JavaScript?
* `Number.MIN_VALUE`
* Technically smaller: `-Infinity` = `-1/0`
### JS-Code Examples:
@ -202,6 +207,7 @@ $(".foo div#bar:eq(0)")
* How would you implement a web design comp that uses non-standard fonts?
* Webfonts (font services like: Google Webfonts, Typekit etc.)
* Explain how a browser determines what elements match a CSS selector?
* Explain how defining an element to have `border-box: box-sizing;` is different than not.
### Optional fun Questions: