Quiz: Javascript
Coding Questions: Question: What is the value of foo? var foo = 10 + '20'; Question: How would you make this work? add(2, 5); // 7 add(2)(5); // 7 Question: What value is returned from the following statement? "i'm a lasagna hog".split("").reverse().join(""); Question: What is the value of