PHP - Type Handling
Given the code:
What is the output?
$data = ['a' => '1', 'b' => '2.5', 'c' => '', 'd' => '0'];
$result = array_map(fn($v) => (bool) $v, $data);
print_r($result);
What is the output?
