今天看pomelo的sample,发现好多地方用到了if(!!something){}
。
var channel = this.channelService.getChannel(name, flag);
if( !! channel) {
users = channel.getMembers();
}
var sessionService = self.app.get('sessionService');
//duplicate log in
if( !! sessionService.getByUid(uid)) {
next(null, {
code: 500,
error: true
});
return;
}
所以不耻下问
←← 忽略我的小学语文水平,我错了!!。。。。