인수 유형에 따라 인수 값을 부울 값으로 변환합니다.
전환
toBool(<parameter>)
toBool(<decimal>)
toBool(<boolean>)
toBool(<string>)
toBool(<integer>)
부울 반환.
toBool("true")
toBool(1)
true를 반환합니다.
toBool("this is not a boolean")
false를 반환합니다.