what is the output of myCar.regiter() and yourCar.info()?
25 - ANS-javascript: what is the result of the last function call?
function apply(x, a) {
return x(a);
}
function square(i) {
return i*i;
}
apply(square, 5)
document.writeln("<ol><li>");
document.writeln(
roster.filter(function (e, i, a) {
return e.gpa > 3.0;
}).sort(function (a, b) {
return b.midterm - a.midterm;
}).map(function (e, i, a) {
return e.name + " ("
+ e.midterm + ")";
Write a JavaScript program that outputs
an html list of students (name and
midterm score) whose gpa is > 3.0, such
that the list is sorted by midterm score
1.Xi Chen (85)
2.Mary Smith (80)
3.Alessandro Reis (74)
Dr. Turing - ANS-javascript: what does prof() return?
function grantDegree(a) {
var prefix = "Dr. ";
function add() {
return prefix + a;
}
return add;
}
var prof = grantDegree("Turing");
prof()
f is ["beluga", "blue", "killer"]
n is [300, 5, 90] - ANS-javascript: what is n and f?
var n = [5, 300, 90];
var f = ["blue", "beluga","killer"];
n.sort();
f.sort();
false - ANS-javascript:
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller Hkane. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $7.99. You're not tied to anything after your purchase.