$(".post")
.filter(function( index ) {
var views = parseInt($(this).attr('data-views'));
return views < 1000;
})
.hide();
function Increment(){
this.v = 0;
}
Increment.prototype.toString = function(){
return ++this.v;
}
var increment = new Increment();
alert(increment); /* 1 */
alert(increment); /* 2 */
alert(increment + increment); /* 7 */