Merge remote-tracking branch 'upstream/master'

This commit is contained in:
eddyystop 2014-06-10 08:34:44 -04:00
commit 95160c770f
8 changed files with 285 additions and 30 deletions

View file

@ -144,9 +144,9 @@ var users = m.request({method: "GET", url: "/user"})
return users.concat({name: "Jane"})
})
function log(load) {
console.log(load)
return load
function log(value) {
console.log(value)
return value
}
//assuming the response contains the following data: `[{name: "John"}, {name: "Mary"}]`