Many methods require one or more function.
Instead using a function like
.where(function(x) {
return x !== null;
})
you can write
.where('x => x !== null')
Many methods require one or more function.
Instead using a function like
.where(function(x) {
return x !== null;
})
you can write
.where('x => x !== null')