WebFund 2014W Lecture 10

From Soma-notes
Jump to navigation Jump to search

The video from the lecture given on February 7, 2014 is available:

Notes

To play with puzzle.js, run "node" at the command line and then say

puzzle = require("./puzzle.js");
q = puzzle.p;

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;