boolean primitive

function booWho(bool) {
	//true、false 返回true,其它的返回false
  return bool===true||bool===false? true: false;
}