WebFund 2014W Lecture 10: Difference between revisions
No edit summary |
|||
Line 10: | Line 10: | ||
<source line lang="javascript"> | <source line lang="javascript"> | ||
y = "Yo"; | y = "Yo"; | ||
var z = "ho ho"; | |||
var f = function(a) { | var f = function(a) { | ||
var x = "hello "; | var x = "hello "; |
Revision as of 18:53, 7 February 2014
To play with puzzle.js, run "node" at the command line and then say
q = require("./puzzle.js");
assuming that puzzle.js is in the directory where you started node.
puzzle.js
y = "Yo";
var z = "ho ho";
var f = function(a) {
var x = "hello ";
var s = {};
s.g = function(b) {
return x + b + ", " + a;
}
s.h = function(c) {
return a = c;
}
s.j = function(x) {
return eval(x);
}
return s;
}
var p = f("do I know you?");
exports.p = p;