var scope = "test"; function currying(welcome){ return function(name) { return welcome + "," + name; } } var prefix = currying("hello"); prefix("world");