Jurgo Boemo

Results 5 issues of Jurgo Boemo

apparently the code was right, the problem was just the generated code. I've runned the build command and now it seems fine

this code : ``` var res = 5; function a(){ return this.res } a(); ``` should return 5 instead of undefined. this code is working fine: ``` res = 5;...

I get this errror. Here's my code: ``` 'use strict' var express = require('express'); var mongoose = require('mongoose'); var app = express(); var MongoRest = require('mongo-rest') let userSchema = new...