function negative(b) { return b == +b ? +!+b : b == 'false' } alert('0,1,true,false'.split(',').map(negative));