I want my code to be like this:
select("*").where("you='me'").and("me='him'").and("game='nes'");
I have only this:
function select(selector){
this.where = function(where){
//Do something with where and select.
//Add the method AND <---
}
}
I dont know how to add the method add in the method where.