CSE :: Javascript - CS
- Which of the following are global functions that are not part of core JavaScript?
- Which of the following reads the textual contents of a URL and returns as a string?
- Which is a useful way to try out small and simple Rhino programs and one-liners?
- Which is a more formal way of importing packages and classes as JavaScript objects?
var f = new java.io.File("/tmp/test");
var out = new java.io.FileWriter(f);
out instanceof java.io.Reader
What will be the output for the above code snippet?