Perhatikan contoh berikut dari mongo shell yang pertama menyimpan fungsi bernama echoFunction
ke system.js
koleksi dan memanggil fungsi menggunakan db.eval()
:
db.system.js.save({
_id: "echoFunction",
value: function (x) {
return 'echo: ' + x;
}
})
db.eval("echoFunction('test')") // -> "echo: test"
echoFunction(...)
tersedia di eval
/$where
/mapReduce
dll. informasi lebih lanjut tersedia di http://docs.mongodb.org/manual/tutorial/store-javascript-function-on-server