questions(solved & verified for
accuracy)
A Javascript object most resembles which Ruby construct? - answer
a hash
Which of the following are considered best practices for using
Javascript to enhance the browser-resident part of your SaaS app -
answer When possible, your app should be able to usable even if
Javascript is disabled
var f = function() {
j = "foo"
return(j)
}
var g = f
var h = f() - answer - the value of h is foo
- the value of j is visible ouside the definition of f